想用webman重構(gòu)秒殺服務(wù),原來(lái)的laravel寫的太卡了
nginx配置是下面這樣
這里粘代碼或配置
location / {
rewrite ^(/.*)$ $1 break;
proxy_pass http://127.0.0.1:8787;
}
webman訪問成功了,laravel沒訪問成功,要怎么寫
location /webman/ {
proxy_pass http://127.0.0.1:8787;
}
webman:
http://127.0.0.1/webman => http://127.0.0.1:8787
laravel:
http://127.0.0.1/