修改 nginx.conf 文件實現。
1server {
2 listen 80;
3 server_name localhost;
4
5 ……
6}
改成
01server {
02 listen 81;
03 server_name localhost;
04
05 location / {
06 root html;
07 index index.html index.htm;
08 }
09 ……
10}
當然改成 8080,8081 什麼的都可以,不一定要 81,但是确保 iptable 要放開對該端口的訪問。
注意到 location 的配置:
默認,你把文件放在安裝目錄下的 html 文件夾,
,
更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!