nginx搭建静态资源服务器
Posted _Covet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx搭建静态资源服务器相关的知识,希望对你有一定的参考价值。
1.前端工程目录
crm-view
|-- view
|-- user.html
2.工程位置
C:UsersAdministratorDesktopCRM系统crm-view
3.配置nginx
找到nginx安装目录打开conf/nginx.conf添加如下节点配置
#vue工程跳转
server {
#访问端口
listen 8081;
server_name localhost;
?
?
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
?
# 页面跳转
root C:UsersAdministratorDesktopCRM系统crm-view;
index index.html;
?
?
location / {
try_files $uri $uri/ @router;
index index.html;
}
?
?
location @router {
rewrite ^.*$ /index.html last;
}
}
?
4.通过nginx访问页面
以上是关于nginx搭建静态资源服务器的主要内容,如果未能解决你的问题,请参考以下文章