nginx配置:

server {
    listen  80;
    server_name  www.swoole.com;
    root  /data/wwwroot/www.swoole.com;

    location / {
        if (!-e $request_filename){
            proxy_pass http://127.0.0.1:9501;
        }
    }
}
 

相关文章:

  • 2022-02-25
  • 2021-05-29
猜你喜欢
  • 2021-08-29
  • 2021-11-12
  • 2021-09-02
  • 2021-09-22
  • 2018-12-22
  • 2019-05-22
相关资源
相似解决方案