Nginx常用配置以及代理轉(zhuǎn)發(fā)操作詳解
nginx配置:
- tcp端口監(jiān)聽是唯一的,nginx要在哪個端口監(jiān)聽,是不能被占用的。配置一個server節(jié)點,就等于在server節(jié)點啟動了一個tcp監(jiān)聽。
- nginx同一個端口可以監(jiān)聽多個不同host的請求。配置文件中可以重復(fù)寫同一個端口的server節(jié)點。
配置分離:
nginx默認讀取配置文件路徑下的nginx.conf,但是我們通常不想把所有配置寫到一個配置文件中,那就可以把配置寫在其他文件中,然后在nginx.conf中指定其他配置文件。
如nginx.conf
user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { 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 /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; include /etc/nginx/conf.d/*.conf; server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } }
這個是剛安裝好的nginx配置文件,我加入了include /etc/nginx/conf.d/*.conf;,加載conf.d下面的所有配置文件。
Nginx配置靜態(tài)資源:
nginx轉(zhuǎn)發(fā)的配置都是寫在server節(jié)點下的,一個簡單的靜態(tài)資源配置如下:
server { listen 80; server_name www.xxxxx.cn; location /api/ { alias /static/test/; index index.html; } }
這個表示,到80端口的請求,域名必須是www.xxxxx.cn,然后訪問/api的請求,將獲取/static/test/下對應(yīng)的文件。
Nginx配置轉(zhuǎn)發(fā)其他應(yīng)用:
server { listen 80; server_name www.xxxxx.cn; location ^~ /api/ { proxy_pass http://127.0.0.1:8080/; } }
這個表示,到80端口的請求,域名必須是www.xxxxx.cn,然后訪問/api的請求,將轉(zhuǎn)發(fā)到127.0.0.1:8080 這個應(yīng)用上。
Nginx配置跨域訪問:
server { listen 80; server_name www.xxxxx.cn; location /api/ { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; proxy_pass http://127.0.0.1:8181/api/; proxy_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; client_max_body_size 10m; client_body_buffer_size 128k; proxy_buffers 32 4k; proxy_connect_timeout 600; proxy_send_timeout 600; proxy_read_timeout 600; } }
這個表示,到80端口的請求,域名必須是www.xxxxx.cn,然后訪問/api的請求,將轉(zhuǎn)發(fā)到127.0.0.1:8181 這個應(yīng)用上,而且支持跨域。
Nginx配置域名通配符訪問:
server { listen 80; server_name ~^(?<test>.+)\.xxxxx\.xxxx$; location / { alias /static/test/$test/; index index.html; } }
這個表示,到80端口的請求,匹配到*.xxxxx.xxxx,將轉(zhuǎn)發(fā)到/static/test 下對應(yīng)二級域名的目錄下。
Nginx配置https:
server { listen 443; server_name www.xxxxx.cn; ssl on; ssl_certificate /static/ssl/1_www.pomit.cn_bundle.crt; ssl_certificate_key /static/ssl/2_www.pomit.cn.key; ssl_session_timeout 5m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; ssl_prefer_server_ciphers on; location ^~ /api/ { proxy_pass http://127.0.0.1:8080/; } }
這個表示,到443端口的請求,域名必須是www.xxxxx.cn,而且支持ssl,即https。ssl證書需要去買的,也有免費的,一般云服務(wù)器都會有20個免費證書發(fā)放。
Nginx配置不同終端的轉(zhuǎn)發(fā):
server { listen 80; server_name www.baidu.com; set $mobile_rewrite do_not_perform; if ($http_user_agent ~* "(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino") { set $mobile_rewrite perform; } if ($http_user_agent ~* "^(1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-)") { set $mobile_rewrite perform; } location ^~ / { if ($mobile_rewrite = perform) { rewrite ^/ https://m.xxxxx.xxx; } alias /static/test/; index index.html; } }
這個表示,請求www.baidu.com,如果是手機端請求,跳轉(zhuǎn)到https://m.xxxxx.xxx ,否則訪問/static/test/路徑下文件。
備注:www.baidu.com域名只用作文章示例使用。
總結(jié)
到此這篇關(guān)于Nginx常用配置以及代理轉(zhuǎn)發(fā)的文章就介紹到這了,更多相關(guān)Nginx配置及代理轉(zhuǎn)發(fā)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- nginx代理轉(zhuǎn)發(fā)配置小結(jié)
- Nginx配置四層、七層網(wǎng)絡(luò)代理轉(zhuǎn)發(fā)的方法示例
- Nginx反向代理轉(zhuǎn)發(fā)tomcat的實現(xiàn)
- 使用Nginx實現(xiàn)端口轉(zhuǎn)發(fā)TCP代理的實現(xiàn)示例
- 使用nginx正向代理實現(xiàn)內(nèi)網(wǎng)域名轉(zhuǎn)發(fā)過程解析
- 詳解Nginx 利用代理轉(zhuǎn)發(fā)請求示例
- nginx反向代理用做內(nèi)網(wǎng)域名轉(zhuǎn)發(fā)
- Nginx 配置TCP代理轉(zhuǎn)發(fā)的實現(xiàn)
相關(guān)文章
Nginx搭建rtmp直播服務(wù)器實現(xiàn)代碼
這篇文章主要介紹了Nginx搭建rtmp直播服務(wù)器實現(xiàn)代碼,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-11-11Nginx服務(wù)器的反向代理proxy_pass配置方法講解
這篇文章主要介紹了Nginx服務(wù)器的反向代理proxy_pass配置方法講解,包括經(jīng)常被提到的url的/問題的相關(guān)說明,需要的朋友可以參考下2016-01-01SpringBoot項目整合FastDFS+Nginx實現(xiàn)圖片上傳功能
FastDFS是一個開源的輕量級分布式文件系統(tǒng),它對文件進行管理,功能包括:文件存儲、文件同步、文件訪問(文件上傳、文件下載)等,解決了大容量存儲和負載均衡的問題,對SpringBoot整合FastDFS實現(xiàn)圖片上傳功能,感興趣的朋友一起看看吧2022-05-05