首頁 > 後端開發 > php教程 > nginx 監聽了兩個埠80和81,但我找不到81的設定! !

nginx 監聽了兩個埠80和81,但我找不到81的設定! !

WBOY
發布: 2016-09-12 17:27:21
原創
1272 人瀏覽過

nginx 監聽了兩個埠80和81,但我找不到81的設定! !

nginx.conf裡頭

http {

<code>##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;</code>
登入後複製

}

conf.d是空的。 。 。

nginx 監聽了兩個埠80和81,但我找不到81的設定! !

sites-enabled

nginx 監聽了兩個埠80和81,但我找不到81的設定! !

然後default文件裡頭

server {

<code>listen 80 default_server;
listen [::]:80 default_server;
</code>
登入後複製
<code>root /data/www/;

# Add index.php to the list if you are using PHP
index index.html index.htm index.php;

server_name _;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ =404;
}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
    include snippets/fastcgi-php.conf;
#
#    # With php5-cgi alone:
    fastcgi_pass 127.0.0.1:9000;
#    # With php5-fpm:
#    fastcgi_pass unix:/var/run/php5-fpm.sock;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny all;
#}</code>
登入後複製

}
我都沒看到81這個字

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板