国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

node.js - AWS配置nginx的反向代理不生效問題

瀏覽:116日期:2024-07-17 14:29:26

問題描述

剛買了個亞馬遜服務器,安裝好nginx之后,想可以通過域名訪問服務器指定的端口,以訪問不同的服務,亞馬遜控制臺設置好安全規則,

node.js - AWS配置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頁面如下:

node.js - AWS配置nginx的反向代理不生效問題

結果不是預期的結果,理論上應該要跳轉至端口為8080的服務器的,但是卻沒有。請求哪位大神可以指點下?另外我想直接通過殺死進程的方式重啟,執行命令netstat -apn | grep 80,輸入如下:

node.js - AWS配置nginx的反向代理不生效問題

這是什么意思呢?如何查找到監聽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

相關文章:
主站蜘蛛池模板: 贵港市| 丘北县| 兰考县| 长海县| 斗六市| 新源县| 南城县| 泾川县| 新野县| 河源市| 马龙县| 海阳市| 漳平市| 新巴尔虎左旗| 静乐县| 九寨沟县| 铁岭县| 唐河县| 惠东县| 黄龙县| 顺义区| 通化县| 阳原县| 内丘县| 香港 | 南靖县| 石棉县| 岳西县| 浦城县| 姜堰市| 浦城县| 玛多县| 玉林市| 武川县| 页游| 始兴县| 丰原市| 盘锦市| 垦利县| 平武县| 阜平县|