色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

nginx反向代理不能配置域名

錢諍諍2年前37瀏覽0評論

nginx反向代理不能配置域名?

nginx可以配置域名。

server {

listen 80; # 監聽 80 端口

autoindex on;

server_name activate.navicat.com; //訪問域名

access_log logs/host.access.log combined; //日志文件位置

index index.html index.htm index.jsp index.php; //前端頁面顯示優先級

if ( $query_string ~* ".*[\;'\<\>].*" ){

return 404;

}

location / {

proxy_pass http://127.0.0.1:8080; # 反向代理到 8080 端口

add_header Access-Control-Allow-Origin *;

}

}

安裝php環境404錯誤,nginx反向代理不能配置域名