nginx配置反向代理
的配置文件link1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| **编辑前先backup**
// 备份配置文件 cp nginx.conf nginx.conf.bak
// 编辑Nginx配置文件 vim /etc/nginx/nginx.conf // 在配置文件的http{}中添加如下配置 server { listen 80; server_name codingme.net; root /webroot; index index.html error_page 500 502 503 504 /50x.html; location / { } }
|
配置反向代理
什么是反向代理呢?参考
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| // 编辑Nginx配置文件 vim /etc/nginx/nginx.conf // 在配置文件的http{}中添加如下配置 server { listen 80; server_name codingme.net; location / { proxy_pass http://127.0.0.1:8080/; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
|