nginx配置相關
nginx快速檢視配置檔案的方法
nginx的配置放在nginx.conf檔案中,一般我們可以使用以下命令檢視伺服器中存在的nginx.conf檔案。
locate nginx.conf
/usr/local/etc/nginx/nginx.conf
/usr/local/etc/nginx/nginx.conf.default
...
如果伺服器中存在多個nginx.conf檔案,我們並不知道實際上呼叫的是哪個配置檔案,因此我們必須找到實際呼叫的配置檔案才能進行修改。
檢視nginx實際呼叫的配置檔案
1.檢視nginx路徑
ps aux|grep nginx
root 352 0.0 0.0 2468624 924 ?? S 10:43上午 0:00.08 nginx: worker process
root 232 0.0 0.0 2459408 532 ?? S 10:43上午 0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off;
root 2345 0.0 0.0 2432772 640 s000 S+ 1:01下午 0:00.00 grep nginx
nginx的路徑為:/usr/local/opt/nginx/bin/nginx
2.檢視nginx配置檔案路徑
使用nginx的 -t 引數進行配置檢查,即可知道實際呼叫的配置檔案路徑及是否呼叫有效。
/usr/local/opt/nginx/bin/nginx -t
nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
測試可知,nginx的配置檔案路徑為:/usr/local/etc/nginx/nginx.conf 且呼叫有效。
/usr/local/opt/nginx/bin/nginx -s reload重新載入
其他
server {
#nginx監聽80埠
listen 80;
#主機名稱
server_name www.load.com;
#nginx代理後,如果靜態資源無法載入出現404的錯誤,可以考慮此配置
#配置靜態資源 解決js css檔案無法載入無法訪問的問題,注意末尾不能有 /
#location ~ (/web/).*\.(js|css|jpg|jpeg|gif|png|ico|pdf|txt|doc)$ {
# proxy_pass http://localhost:8080;
# }
#配置靜態資源 解決js css檔案無法載入無法訪問的問題,注意末尾不能有 /
#location ~ (/admin/).*\.(js|css|jpg|jpeg|gif|png|ico|pdf|txt|doc)$ {
# proxy_pass http://localhost:8082;
#}
#路徑轉發地址注意事項:
正確轉發路徑的規則:
(^/xxx).* 這樣轉發l路徑不會出錯
錯誤轉發路徑規則:
/xxx 如果出現了包含路徑就會轉發失敗,例如:/admin/webuplod/就會轉發到web模組了,無法轉發到admin模組,就會出404的錯誤。
#/web路徑轉發地址
location ~ (^/web).* {
proxy_pass http://192.168.2.75:8080;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
#api路徑轉發地址
location ~ (^/api).* {
proxy_pass http://192.168.2.75:8081;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
#admin路徑轉發地址
location ~ (^/admin).* {
proxy_pass http://192.168.2.75:8082;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
#根目錄轉發路徑
location ~/ {
proxy_pass http://192.168.2.75:8080;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
}
}
相關文章
- mac下安裝nginx及相關配置MacNginx
- nginx連結jsp的相關配置NginxJS
- nginx相關Nginx
- nginx-k8s 相關配置詳解NginxK8S
- Nginx 相關介紹Nginx
- 申請免費https證書及nginx相關配置HTTPNginx
- Git 相關配置Git
- JDBC 相關配置JDBC
- Linux 、docker 、nginx 相關命令LinuxDockerNginx
- 從Nginx遷移回到Lighttpd以及相關配置 — High5!NginxhttpdH5
- spring相關配置Spring
- Spring配置相關Spring
- ubuntu中Django相關配置UbuntuDjango
- php-fpm相關配置PHP
- vue-router相關配置Vue
- web.xml相關配置WebXML
- WebDAV 配置及相關工具Web
- VScode配置xdebug相關配置VSCode
- Mariadb之日誌相關配置
- ubuntu16 zabbix 相關配置Ubuntu
- mac iPhone郵箱相關配置MaciPhone
- Springmvc相關配置總結SpringMVC
- SpringMvc相關配置的作用SpringMVC
- [LNMP]php-fpm相關配置LNMPPHP
- Solaris 10 網路卡相關配置
- solaris 10的ftp相關配置FTP
- Spark的相關引數配置Spark
- 語義搜尋相關配置
- SpringCloud(1)-Eureka相關配置SpringGCCloud
- webpack4-05-配置vue相關WebVue
- Git命令的使用和相關配置Git
- spring boot配置檔案相關Spring Boot
- [網路配置相關]——netstat命令
- 高校郵件系統配置相關
- SpringBoot--MVC相關配置Spring BootMVC
- oracle817歸檔配置相關---Oracle
- keycloak~token配置相關說明
- SpringCloud(3)-OpenFeign相關配置SpringGCCloud