nginx는 이제 404 Not Found입니다.

nginx는 이제 404 Not Found입니다.

이전에는 nginx가 있었지만 지금은 웹에서 404입니다. 어쩌면 뭔가가 다시 시작될 수도 있지만 확실하지는 않습니다.

404 Not Found
nginx/1.18.0 (Ubuntu)

다양한 오류 nginx를 검색했습니다. sudo nginx -t는 괜찮습니다.

/var/log/nginx/error.log

[notice] 60852#60852: signal process started

컬 -Ihttps://test.com

HTTP1.1 404 Not Found
Server: nginx/1.18.0 (Ununtu)
Date: Thu, 27 Aug 21:02:56 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive

/etc/nginx/sites-available/test.conf

server {
listen 80;
listen [::]:80;
root /var/www/html/test.com/public;
index index.php index.html index.htm;
server_name test.com www.test.com;

location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}

include /var/www/html/test.com/.nginx.conf;

# new lines
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/test.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/test.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}

/etc/nginx/nginx.conf

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
}

http {

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    gzip on;


    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}



sudo 서비스 nginx 다시 로드, 알았어

도와주세요?

답변1

" 404 Not Found"는 시스템이 웹 서버에서 특정 리소스를 찾을 수 없음을 의미합니다. 그래서 문제는 서버에 있습니다. 그러니 내일 다시 시도해 보세요.

답변2

일부 Ngnix 기반 가상 서버에는 정확한 IP 주소가 필요합니다. 다음을 통해 쉽게 확인할 수 있습니다.

curl http://myvirtualdomain.com 
  <-- return 404 error
curl -vk https://myvirtualdomain.com 
  <-- OK

이는 구성으로 인해 발생합니다 nginx.

가상 서버 블록에 서버의 IP 주소를 추가하세요.

server {
listen 80;
listen [::]:80;
root /var/www/html/test.com/public;
index index.php index.html index.htm;
server_name test.com www.test.com;

listen 10x.32.22.xx;   # adds your server ip 

이것이 내 nginx서버 구성의 핵심 포인트입니다.

관련 정보