ubuntu 16.04 nginx怎么修改端口
1个回答
展开全部
把80端口指向8080端口, 方法如下:
修改nginx.conf
注释掉改行:
#nginx.conf 中 http 段最后会有以下这两句.
#这样你就可以把已经配置好的各种 server conf 放在 sites-available 里,
#如果想启用的时缓缓或候只要复制或者软连接到上面两个文件夹里,想关掉或者更改配置的时候也比较方便.
#
#而默认情况下sites-enabled目录下会放一个sites-available/default的软链接,
#在sites-available/哪毁default已经对localhost进行设置,
#导致无论你怎么修改nginx.conf对本地端口进行配置都不会生效. 一直报404错误.
#所以此处要把sites-enabled注掉. 或者把该软链接换掉.
#
include /etc/nginx/conf.d/*.conf;
#include /etc/nginx/sites-enabled/*; 12345678910111234567891011
在http配置项中增加如下内容:
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
}123456789101112123456789101112
重启nginx
sudo service nginx restart //或者 sudo nginx -s reload11
然后就可以直接通过localhost/index.htm来访问8080端口的项目了.
nginx简单的操作命令
sudo service nginx start #启动
sudo service nginx stop #停止
sudo service nginx restart #重新启动
sudo service nginx reload #重新启动
sudo nginx -s start #启动扰伍
sudo nginx -s stop #停止
sudo nginx -s restart #重新启动
sudo nginx -s reload #重新加载配置
修改nginx.conf
注释掉改行:
#nginx.conf 中 http 段最后会有以下这两句.
#这样你就可以把已经配置好的各种 server conf 放在 sites-available 里,
#如果想启用的时缓缓或候只要复制或者软连接到上面两个文件夹里,想关掉或者更改配置的时候也比较方便.
#
#而默认情况下sites-enabled目录下会放一个sites-available/default的软链接,
#在sites-available/哪毁default已经对localhost进行设置,
#导致无论你怎么修改nginx.conf对本地端口进行配置都不会生效. 一直报404错误.
#所以此处要把sites-enabled注掉. 或者把该软链接换掉.
#
include /etc/nginx/conf.d/*.conf;
#include /etc/nginx/sites-enabled/*; 12345678910111234567891011
在http配置项中增加如下内容:
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
}123456789101112123456789101112
重启nginx
sudo service nginx restart //或者 sudo nginx -s reload11
然后就可以直接通过localhost/index.htm来访问8080端口的项目了.
nginx简单的操作命令
sudo service nginx start #启动
sudo service nginx stop #停止
sudo service nginx restart #重新启动
sudo service nginx reload #重新启动
sudo nginx -s start #启动扰伍
sudo nginx -s stop #停止
sudo nginx -s restart #重新启动
sudo nginx -s reload #重新加载配置
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询