Nginx的端口修改问题

时间:2017-07-02

修改 nginx.conf 文件实现。在 Linux 上该文件的路径为 /usr/local/nginx/conf/nginx.conf,Windows 下 安装目录\conf\nginx.conf。

1 server {
2     listen       80;
3     server_name  localhost;
4     
5     ……
6 }

改成

01 server {
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 的配置:

  • root html; #根目录,相对于安装目录  
  • index index.html index.htm; #默认主页

默认,你把文件放在安装目录下的 html 文件夹,即可通过 Nginx 访问。

上一条:Nginx一个server主机上80、433http、https共存 下一条:Windows Server 2008 R2下将nginx安装成windows系统服务

相关文章

最新文章