群晖nignx默认端口为80/443,然而访问端口是5000/5001端口,可能给其它的应用使用,但是我想使用这两个端口却使用不了,只能被迫使用其它端口,我想修改这两个端口,这样反代以后就不用使用网址加端口的方式访问。
使用putty登录群晖SSH,通过命令行来修改。
#ssh登陆nas sudo -i #切换至root用户 #检查端口占用情况 netstat -anp |grep 80 netstat -anp |grep 443 #能确定端口被nginx占用 cd /usr/syno/share/nginx #文件备份 cp server.mustache server.mustache_`date +%Y%m%d` cp DSM.mustache DSM.mustache_`date +%Y%m%d` cp WWWService.mustache WWWService.mustache_`date +%Y%m%d` #其中的8080、8443自行调整 sed -i "s/80/8080/g" server.mustache sed -i "s/80/8080/g" DSM.mustache sed -i "s/80/8080/g" WWWService.mustache sed -i "s/443/8443/g" server.mustache sed -i "s/443/8443/g" DSM.mustache sed -i "s/443/8443/g" WWWService.mustache #重启nginx synosystemctl restart nginx #检查nginx服务 ps -ef|grep nginx #检查端口占用情况 netstat -anp |grep 80 netstat -anp |grep 443