nginx 监听多个端口 80和81

WBOY
Libérer: 2016-07-29 09:12:23
original
2609 Les gens l'ont consulté

nginx.conf 中配置两个server即可:

<code>http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on; 

    keepalive_timeout  <span>65</span>; 

    gzip  on;

    upstream localhost {
        <span>server</span><span>127.0</span><span>.0</span><span>.1</span>:<span>8080</span> max_fails=<span>7</span> fail_timeout=<span>7</span>s;
    }   
    <span>server</span> {
        listen       <span>81</span>; 
        server_name  localhost;
        location / { 
            root html;
            <span>index</span><span>index</span>.html <span>index</span>.htm;
            proxy_pass http:<span>//localhost;</span>
        }   
    }   
    <span>server</span> {
        listen       <span>80</span>; 
        server_name  localhost;

        <span>#charset koi8-r;</span><span>#access_log  logs/host.access.log  main;</span>        location / { 
            root   html;
            <span>index</span><span>index</span>.html <span>index</span>.htm;
            proxy_pass http:<span>//localhost;</span>
        }
    }
}</code>
Copier après la connexion
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了nginx 监听多个端口 80和81,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal