node.js - AWS配置nginx的反向代理不生效問題
問題描述
剛買了個亞馬遜服務器,安裝好nginx之后,想可以通過域名訪問服務器指定的端口,以訪問不同的服務,亞馬遜控制臺設置好安全規則,
修改nginx.conf文件,設置反向代理:
#user nobody;worker_processes 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pidlogs/nginx.pid;events{ worker_connections 1024;}http{ include mime.types; default_type application/octet-stream; #log_format main ’$remote_addr - $remote_user [$time_local] '$request' ’ # ’$status $body_bytes_sent '$http_referer' ’ # ’'$http_user_agent' '$http_x_forwarded_for'’; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server {listen 80;server_name localhost;#charset koi8-r;#access_log logs/host.access.log main;location /{ root html; index index.html index.htm;}#error_page 404 /404.html;# redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html{ root html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ .php$ {# proxy_pass http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ .php$ {# root html;# fastcgi_pass 127.0.0.1:9000;# fastcgi_index index.php;# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;# includefastcgi_params;#}# deny access to .htaccess files, if Apache’s document root# concurs with nginx’s one##location ~ /.ht {# deny all;#} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { #root html; #index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { #root html; #index index.html index.htm; # } #} include servers/*.conf;}
主要是在末尾增加了include servers/*.conf;,在相應的目錄下增加conf文件,名字為domainname.com.conf,文件內容:
upstream testproject{ server localhost:8080;}server{ listen 80; server_name domainname.com; # send request back to apache ## location / {proxy_pass http://testproject;#Proxy Settingsproxy_redirect off;proxy_set_header Host $host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;proxy_max_temp_file_size 0;proxy_connect_timeout 90;proxy_send_timeout 90;proxy_read_timeout 90;proxy_buffer_size 4k;proxy_buffers 4 32k;proxy_busy_buffers_size 64k;proxy_temp_file_write_size 64k; }}
設置完成后,重啟服務器:
sudo /path/to/nginx -s reload
訪問地址domainname.com頁面如下:
結果不是預期的結果,理論上應該要跳轉至端口為8080的服務器的,但是卻沒有。請求哪位大神可以指點下?另外我想直接通過殺死進程的方式重啟,執行命令netstat -apn | grep 80,輸入如下:
這是什么意思呢?如何查找到監聽80端口進程的pid?
問題解答
回答1:你幾個server里面都沒有看到listen 8080;
回答2:server { proxy_pass http://127.0.0.1:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
重啟服務器,不是reload
相關文章:
1. html - 哪些情況下float會失效?2. mac連接阿里云docker集群,已經卡了2天了,求問?3. 就一臺服務器,mysql數據庫想實現自動備份,如何設計?4. css3 - text-overflow為何會在li的子標簽a下失效5. javascript - node.js不同模塊之間如何傳值6. android - 哪位大神知道java后臺的api接口的對象傳到前端后輸入日期報錯,是什么情況?求大神指點7. javascript - js控制元素樣式的疑惑8. [前端求職必看]前端開發面試題與答案精選_擴展問題9. docker Toolbox在win10 家庭版中打開報錯10. javascript - 求解答,koa-bodyparser獲取到的參數是空對象,為什么?????
