>백엔드 개발 >PHP 튜토리얼 >nginx는 두 개의 포트 80과 81을 수신하지만 81에 대한 구성을 찾을 수 없습니다! !

nginx는 두 개의 포트 80과 81을 수신하지만 81에 대한 구성을 찾을 수 없습니다! !

WBOY
WBOY원래의
2016-09-12 17:27:211243검색

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에 대한 구성을 찾을 수 없습니다! !

사이트 활성화

nginx는 두 개의 포트 80과 81을 수신하지만 81에 대한 구성을 찾을 수 없습니다! !

그런 다음 기본 파일에서

서버 {

<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이라는 단어도 못 봤어요

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.