Home > Backend Development > PHP Tutorial > nginx configuration vhost example

nginx configuration vhost example

WBOY
Release: 2016-07-29 08:58:52
Original
977 people have browsed it

nginx Here are a few examples of configuring vhost
php

<code>server {
server_name stage.localhost;
<span>listen</span><span>80</span> ;
        root /data;
        <span>index</span><span>index</span>.html <span>index</span>.htm <span>index</span>.php;
location ~ .php$ {
        fastcgi_pass <span>127.0</span>.<span>0</span>.<span>1</span>:<span>9000</span>;
        fastcgi_index <span>index</span>.php;
        fastcgi_param SCRIPT_FILENAME  /data<span>$fastcgi_script_name</span>;
        include fastcgi_params;
    }
}</code>
Copy after login

static files

<code>server {
server_name sms<span>.fake</span><span>;</span>
listen <span>80</span><span>;</span>
        root /data/fakesms<span>;</span>
        index mobile1<span>.html</span> mobile1b<span>.html</span><span>;</span>
}</code>
Copy after login

server services developed in other languages

<code>server {
    listen   <span>80</span>;
    server_name localhost<span>.</span>pythonserver;

    access_log /<span>var</span>/<span>log</span>/nginx/pythonserver<span>-access</span><span>.</span><span>log</span> ;
    error_log /<span>var</span>/<span>log</span>/nginx/pythonserver<span>-error</span><span>.</span><span>log</span> ;
    charset utf<span>-</span><span>8</span>;
    client_max_body_size    <span>100</span>m;
    client_body_timeout     <span>60</span>;      
    location /exam0<span>/</span> {
        proxy_pass http:<span>//127.0.0.1:8889;</span>
    }
    location /exam1<span>/</span> {
        proxy_pass http:<span>//127.0.0.1:8880;</span>
    }
    location /exam2<span>/</span> {
        proxy_pass http:<span>//127.0.0.1:8881;</span>
    }
}</code>
Copy after login
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces the nginx configuration vhost example, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template