node.js - AWS配置nginx的反向代理不生效問(wèn)題
問(wèn)題描述
剛買(mǎi)了個(gè)亞馬遜服務(wù)器,安裝好nginx之后,想可以通過(guò)域名訪問(wèn)服務(wù)器指定的端口,以訪問(wèn)不同的服務(wù),亞馬遜控制臺(tái)設(shè)置好安全規(guī)則,
修改nginx.conf文件,設(shè)置反向代理:
#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;,在相應(yīng)的目錄下增加conf文件,名字為domainname.com.conf,文件內(nèi)容:
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; }}
設(shè)置完成后,重啟服務(wù)器:
sudo /path/to/nginx -s reload
訪問(wèn)地址domainname.com頁(yè)面如下:
結(jié)果不是預(yù)期的結(jié)果,理論上應(yīng)該要跳轉(zhuǎn)至端口為8080的服務(wù)器的,但是卻沒(méi)有。請(qǐng)求哪位大神可以指點(diǎn)下?另外我想直接通過(guò)殺死進(jìn)程的方式重啟,執(zhí)行命令netstat -apn | grep 80,輸入如下:
這是什么意思呢?如何查找到監(jiān)聽(tīng)80端口進(jìn)程的pid?
問(wèn)題解答
回答1:你幾個(gè)server里面都沒(méi)有看到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; }
重啟服務(wù)器,不是reload
相關(guān)文章:
1. webpack - vuejs+java前后臺(tái)分離實(shí)現(xiàn)及部署問(wèn)題2. docker鏡像push報(bào)錯(cuò)3. docker安裝后出現(xiàn)Cannot connect to the Docker daemon.4. python - 有什么好的可以收集貨幣基金的資源?5. docker start -a dockername 老是卡住,什么情況?6. docker容器呢SSH為什么連不通呢?7. docker網(wǎng)絡(luò)端口映射,沒(méi)有方便點(diǎn)的操作方法么?8. Docker for Mac 創(chuàng)建的dnsmasq容器連不上/不工作的問(wèn)題9. node.js - nodejs debug問(wèn)題10. css3 - jquery div 翻轉(zhuǎn)?
