我是靠谱客的博主 老迟到月饼,最近开发中收集的这篇文章主要介绍nginx部署html项目,nginx配置多个前端项目,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最近一台服务器要配置多个前端项目,当然前后端分离就需要nginx来配置了。

单个项目还好说,如下

修改nginx的nginx.conf配置文件

#user nobody;

worker_processes 1;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

pid

/usr/local/nginx/logs/nginx.pid;

events

{

worker_connections 1024;

}

http

{

server {

listen 8000;

server_name localhost;

#charset

koi8-r;

#access_log logs/host.access.log main;

location /

{

root /var/www/;

#index index.html index.htm;

}

location ~

/static/.*.(gif|jpg|jpeg|png|bmp|swf)$ {

root

/var/www/project;

}

location ~

/static/.*.(js|css)$ {

root

/var/www/project;

}

location =

/project {

root /var/www/project;

index index.html index.htm;

}

}

}

但是出现了多个项目也需要在nginx.conf配置

项目基于vue cli 开发的,打包时需要配置一下js,css 等静态文件的连接地址

修改如下配置文件

a4c26d1e5885305701be709a3d33442f.png

然后再来配置nginx.conf

user

root;

worker_processes 1;

pid

/usr/local/nginx/logs/nginx.pid;

events

{

worker_connections 1024;

}

http

{

include mime.types;

default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local]

"$request" '

# '$status $body_bytes_sent "$http_referer"

'

# '"$http_user_agent"

"$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;

#tcp_nopush on;

#keepalive_timeout 0;

keepalive_timeout 65;

#gzip on;

server {

listen 8000;

server_name localhost;

#charset

koi8-r;

#access_log logs/host.access.log main;

location /

{

root /var/www;

#index index.html index.htm;

}

location =

/project1 {

root /var/www/project1;

try_files $uri $uri/

/project1/index.html;

index index.html index.htm;

}

location =

/project2{

root

/var/www/project2;

try_files $uri $uri/

/project2/index.html;

index index.html index.htm;

}

}

}

此处注意呢

user root; 需要加上, 不然范围报 500,

然后重启一下nginx

先停止

./nginx -s quit

再重启

/usr/local/nginx/sbin/nginx

-c /usr/local/nginx/conf/nginx.conf

————————————————

成功访问

192.168..:8000/project/index.html

192.168..:8000/project1/index.html

最后

以上就是老迟到月饼为你收集整理的nginx部署html项目,nginx配置多个前端项目的全部内容,希望文章能够帮你解决nginx部署html项目,nginx配置多个前端项目所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部