: This article mainly introduces the nginx vhost configuration example. if you are interested in the PHP Tutorial, you can refer to it. Examples of vhost configuration in nginx
Php
server {server_name stage.localhost;listen80 ; root /data; indexindex.html index.htm index.php;location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /data$fastcgi_script_name; include fastcgi_params; }}
Static files
server {server_name sms.fake;listen 80; root /data/fakesms; index mobile1.html mobile1b.html;}
Server services developed in other languages
server { listen 80; server_name localhost.pythonserver; access_log /var/log/nginx/pythonserver-access.log ; error_log /var/log/nginx/pythonserver-error.log ; charset utf-8; client_max_body_size 100m; client_body_timeout 60; location /exam0/ { proxy_pass http://127.0.0.1:8889; } location /exam1/ { proxy_pass http://127.0.0.1:8880; } location /exam2/ { proxy_pass http://127.0.0.1:8881; }}
'). AddClass ('pre-numbering '). hide (); $ (this ). addClass ('Has-numbering '). parent (). append ($ numbering); for (I = 1; I <= lines; I ++) {$ numbering. append ($ ('
'). Text (I) ;}; $ numbering. fadeIn (1700) ;}) ;}; script
The above describes the nginx vhost configuration example, including some content, and hope to be helpful to friends who are interested in the PHP Tutorial.