摘要:轉發接著上篇文章說添加以下內容映射端口映射地址你要轉發的地址做文件服務器你的服務器文件地址重啟
Nginx轉發
接著上篇文章說
cd /usr/local/nginx/conf/vhost vi ***.***.com.conf
添加以下內容
server { listen 80; # 映射端口 autoindex on; server_name ***.com; # 映射地址 access_log /usr/local/nginx/logs/access.log combined; index index.html index.htm index.jsp index.php; #error_page 404 /404.html; if ( $query_string ~* ".*[;"<>].*" ){ return 404; } location / { proxy_pass http://127.0.0.1:8080; # 你要轉發的地址 add_header Access-Control-Allow-Origin *; } }Nginx做文件服務器
server { listen 80; autoindex off; server_name ***.com; access_log /usr/local/nginx/logs/access.log combined; index index.html index.htm index.jsp index.php; #error_page 404 /404.html; if ( $query_string ~* ".*[;"<>].*" ){ return 404; } location / { root /ftpfile/; # 你的服務器ftp文件地址 add_header Access-Control-Allow-Origin *; } }重啟Nginx
/usr/local/nginx/sbin/nginx -s reload
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/39634.html
閱讀 3881·2021-10-08 10:05
閱讀 2968·2021-09-27 13:57
閱讀 2693·2019-08-29 11:32
閱讀 1017·2019-08-28 18:18
閱讀 1312·2019-08-28 18:05
閱讀 1997·2019-08-26 13:39
閱讀 875·2019-08-26 11:37
閱讀 2056·2019-08-26 10:37