Ubuntu 14.04 LTS에서 실행되는 nginx 역방향 프록시가 있습니다. nginx 프록시에 대한 요청이 이루어지면 이를 하나의 (기본) 웹사이트가 포함된 IIS 서버에 전달합니다. HTML을 잘 렌더링하는 것처럼 보이지만 불행하게도 서버는 다른 모든 자산에 대해 404 오류로 응답합니다.
파일 은 다음과 같습니다 /etc/nginx/nginx.conf
.
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile off;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
default
내 nginx 서버 구성은 다음과 같습니다 .
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
index index.php index.html index.htm;
server_name example.com www.example.com;
location / {
try_files $uri $uri/ =404;
proxy_pass http://104.46.52.226/;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
example.com
다음은 또는 www.example.com
(호스트 파일 에 대한 요청 결과입니다.가지다변경되었습니다):
내 서버 구성에 지시문 이 없다는 사실이 문제일 수도 있다고 생각했습니다 root
. 하지만 그 문제를 어디서부터 시작해야 할지 몰랐습니다. 최소한 나는 로컬 호스트를 완벽하게 검색할 수 있기 때문에 IIS 서버 자체에는 문제가 없다는 것을 알고 있습니다.
이견있는 사람? 미리 감사드립니다.
편집: 여기에 내 오류 로그도 있습니다.
2015/10/13 09:41:10 [emerg] 3069#0: invalid number of arguments in "proxy_pass" directive in /etc/nginx/sites-enabled/armari.com:31
2015/10/13 10:12:33 [emerg] 3606#0: "listen" directive is not allowed here in /etc/nginx/sites-enabled/armari.com:2
2015/10/13 13:39:18 [error] 3911#0: *1 open() "/usr/share/nginx/html/css/new-web.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/new-web.css HTTP/1.1", host: "www.armari.com", referrer: "http://www.armari.com/"
2015/10/13 13:39:18 [error] 3911#0: *3 open() "/usr/share/nginx/html/css/nivo/themes/default/default.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/nivo/themes/default/default.css HTTP/1.1", host: "www.armari.com", referrer: "http://www.armari.com/"
2015/10/13 13:39:18 [error] 3911#0: *4 open() "/usr/share/nginx/html/css/nivo/nivo-slider.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/nivo/nivo-slider.css HTTP/1.1", host: "www.armari.com", referrer: "http://www.armari.com/"
2015/10/13 13:39:21 [error] 3911#0: *8 open() "/usr/share/nginx/html/css/new-web.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/new-web.css HTTP/1.1", host: "armari.com", referrer: "http://armari.com/"
2015/10/13 13:39:21 [error] 3909#0: *10 open() "/usr/share/nginx/html/css/nivo/themes/default/default.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/nivo/themes/default/default.css HTTP/1.1", host: "armari.com", referrer: "http://armari.com/"
2015/10/13 13:39:21 [error] 3909#0: *11 open() "/usr/share/nginx/html/css/nivo/nivo-slider.css" failed (2: No such file or directory), client: 188.39.188.214, server: armari.com, request: "GET /css/nivo/nivo-slider.css HTTP/1.1", host: "armari.com", referrer: "http://armari.com/"
답변1
결국 해결책을 찾았습니다. nginx 서버가 try_files $uri $uri/ =404;
. 내가 해야 할 일은 이 줄을 제거하는 것뿐이었고 완벽하게 작동했습니다. :)
location / {
proxy_pass http://104.46.52.226/;
}
답변2
가능성이 가장 낮은 문제부터 시작하여 80이 의 올바른 포트입니까 proxy_pass http://104.46.52.226/
? 그렇지 않다면 어느 포트에서 수신 대기하고 있습니까? 예를 들어 5000이면 Proxy_pass가 필요합니다.http://104.46.52.226:5000; 이것은 아마도 귀하의 문제가 아닐 것입니다.
IIS가 사용할 수 있도록 위치 블록에 일부 헤더를 설정해야 합니다.
proxy_set_header x-real-IP $remote_addr;
proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;
proxy_set_header host $http_host;
인용하려면칼 세귄:
Nginx는 실제로 웹 서버에 요청을 발행하므로 웹 서버가 필요한 모든 정보를 갖도록 요청에 헤더를 추가합니다.
그는 또한 캐싱에 대해서도 이야기합니다.
파일 /etc/nginx/sites-enabled/armari.com
에 주석 처리된 줄이 있는 것 같습니다 server {
. 오류 중 하나입니다. /etc/nginx/sites-enabled/
Nginx가 기분 좋게 작동하려면 필요한 모든 파일이 작동해야 합니다. 이 파일이라면 아마도 #
(주석 시작 코드)를 붙여넣지 않았을 것입니다. 아니면 오류가 발생한 이후에 변경했을 수도 있습니다.