现在前后端分离没问题,想要后端也能暴露出来,可以通过域名+端口直接访问, 最好还是同一域名
server
{
listen 80;
server_name www.xxx.cc;
index index.html index.htm;
set $base_path "/xxx/xxx/xx";
root "${base_path}";
location / {
alias "${base_path}/dist/";
index index.html index.htm;
try_files $uri $uri/ /index.html$is_args$args;
}
location /api/ {
proxy_pass http://127.0.0.1:9222/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
server {
listen 9222;
server_name 127.0.0.1 www.xxx.cc;
location / {
root /xxx/xxx/xx;
index index.php;
try_files $uri $uri/ $uri/index.php$is_args$args;
location ~ ^(.+?\.php)($|/.*) {
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9005;
fastcgi_index index.php;
}
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.