swoole#可以用80埠嗎?
Swoole 綁定網域80 連接埠(Nginx 監聽轉送)
啟動Swoole 的http server,可以使用IP 連接埠進行存取
#建立Nginx 虛擬網域
vim swotp.liuguofeng.com.conf
server { listen 80; server_name swotp.liuguofeng.com ; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/swoole_thinkphp.liuguofeng.com; location / { if (!-e $request_filename) { proxy_pass http://127.0.0.1:8811; } } }
重啟Nginx,DNS 指向IP
以上是swoole可以用80埠嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!