摘要:轉(zhuǎn)發(fā)接著上篇文章說添加以下內(nèi)容映射端口映射地址你要轉(zhuǎn)發(fā)的地址做文件服務(wù)器你的服務(wù)器文件地址重啟
Nginx轉(zhuǎn)發(fā)
接著上篇文章說
cd /usr/local/nginx/conf/vhost vi ***.***.com.conf
添加以下內(nèi)容
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; # 你要轉(zhuǎn)發(fā)的地址 add_header Access-Control-Allow-Origin *; } }Nginx做文件服務(wù)器
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/; # 你的服務(wù)器ftp文件地址 add_header Access-Control-Allow-Origin *; } }重啟Nginx
/usr/local/nginx/sbin/nginx -s reload
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/39634.html
閱讀 3878·2021-10-08 10:05
閱讀 2963·2021-09-27 13:57
閱讀 2691·2019-08-29 11:32
閱讀 1015·2019-08-28 18:18
閱讀 1306·2019-08-28 18:05
閱讀 1993·2019-08-26 13:39
閱讀 872·2019-08-26 11:37
閱讀 2052·2019-08-26 10:37