8787能不能换成80 这里写问题具体描述 8787能不能换成80
8787能不能换成80 这里写搜到的方案及不适用原因
nginx反代一下不就行了,或者直接改端口号
搜一下,一堆问过的。 https://www.workerman.net/q/5330
能换成80
server { listen 80; location / { proxy_pass http://localhost:8787; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; }
}
nginx反代一下不就行了,或者直接改端口号
搜一下,一堆问过的。
https://www.workerman.net/q/5330
能换成80
}