vue.js|vue.js 与 php前后端分离 服务器本地配置
本地host:
127.0.0.1 api.bull.com
127.0.0.1 js.bull.com
nginx配置
server {
listen80;
server_nameapi.bull.com;
indexindex.php index.html index.htm;
location / {
rootD:/serversoft/upupw/7.1/htdocs/bull;
indexindex.html index.htm default.html default.htm index.php default.php app.php u.php;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ ^.+\.php {
rootD:/serversoft/upupw/7.1/htdocs/bull;
fastcgi_passbakend;
fastcgi_indexindex.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_paramPATH_INFO $fastcgi_path_info;
fastcgi_paramPATH_TRANSLATED $document_root$fastcgi_path_info;
includefastcgi.conf;
}
location ~* ^/(css|img|js|flv|swf|download)/(.+)$ {
}
location ~ /\.ht {
deny all;
}
}server {
listen 80;
server_name js.bull.com;
location / {
proxy_pass http://localhost:8080;
}
}
【vue.js|vue.js 与 php前后端分离 服务器本地配置】开启前端:
npm install
npm run dev
文章图片
image.png
文章图片
image.png
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- Docker应用:容器间通信与Mariadb数据库主从复制
- 《真与假的困惑》???|《真与假的困惑》??? ——致良知是一种伟大的力量
- 第326天
- Shell-Bash变量与运算符
- 逻辑回归的理解与python示例
- Guava|Guava RateLimiter与限流算法
- 我和你之前距离
- thinkphp|thinkphp 3.2 如何调用第三方类库
- CGI,FastCGI,PHP-CGI与PHP-FPM