Nginx vhost configuration example

Source: Internet
Author: User
: 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.

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.