发布网友 发布时间:2022-02-26 21:21
共1个回答
热心网友 时间:2022-02-26 22:51
1.打开nginx.conf的配置文件
2.在server段内配置listen 端口号就可以了
如:
server
{
listen 80; 配置nginx启动监听端口,默认一般配置为80
server_name localhost;
#server_name www.xxxx.cn;其中用#好标识此行注释,不起作用。
index index.html index.htm index.php;
root /usr/local/nginx/html/;
3.通过下面命令查看服务nginx服务名称和对应的端口号
lsof -i -n -P |awk '{print $1,$(NF-1)}' |grep --color nginx
或者:
netstat -lntup |grep --color nginx