1 Star 0 Fork 1

Ashleym/ruoyi-vue-django

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
Ashleym 提交于 2022-06-17 16:42 . 支持docker部署方式
user root;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
server {
listen 8081;
listen [::]:8081;
server_name _;
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass 172.18.0.1:8000;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
server {
listen 80;
listen [::]:80;
server_name _;
location / {
# 将django的collectstatic命令收集的静态资源放在dist/static下可以共用静态文件查找路径
root /root/ruoyi-vue-django/ruoyi-ui/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location ^~ /api/ {
proxy_pass http://127.0.0.1:8081/api/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
}
# 支持访问django admin
location ^~ /admin/ {
proxy_pass http://127.0.0.1:8081/admin/;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Ashleym/ruoyi-vue-django.git
[email protected]:Ashleym/ruoyi-vue-django.git
Ashleym
ruoyi-vue-django
ruoyi-vue-django
main

搜索帮助