KayChen

记录技术生活的点点滴滴

0%

Nginx配置Vue和Laravel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
upstream laowu {
server 10.9.10.66:9000 fail_timeout=10 max_fails=5 weight=1 ;
server 10.9.10.65:9000 fail_timeout=10 max_fails=5 weight=1 ;
}

server {
listen 9090;
server_name laowu.ifchange.com;
charset utf-8;
root /opt/wwwroot/toh/client/sly-web/dist;

access_log /opt/log/laowu.log main;
error_log /opt/log/laowu_err.log;
index index.html index.htm index.php;

location / {
try_files $uri $uri/ /index.html?$query_string;
}
location /api {
try_files $uri $uri/ /index.php?$query_string;
}

location ~ \.php$ {
root /opt/wwwroot/toh/service/sly/public;
fastcgi_pass laowu ;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param APP_ENV production;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $DOCUMENT_ROOT$fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $DOCUMENT_ROOT/$fastcgi_script_name;
include fastcgi_params;
}
}