3 Star 0 Fork 0

ynf/ymk_community_management

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
ynf 提交于 2023-03-22 20:16 . up deploy
user nginx;
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;
upstream my-django {
server 127.0.0.1:9091;
}
#gzip on;
server {
listen 80;
listen [::]:80;
server_name _;
location / {
root /app/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
# https://www.jianshu.com/p/403bab8fc34d
# http://nginx.org/en/docs/http/ngx_http_core_module.html#location
location /api/ {
proxy_pass http://my-django/api/;
}
location /dj-static {
alias /app/dj-static/;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lmk73444/ymk_community_management.git
git@gitee.com:lmk73444/ymk_community_management.git
lmk73444
ymk_community_management
ymk_community_management
master

搜索帮助