1 Star 0 Fork 3

wangjj/Bee-Primevue-Admin

forked from Ls.c/Bee-Primevue-Admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 789 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ls.c 提交于 2024-04-01 17:26 . Initial version
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
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;
keepalive_timeout 65;
server {
listen 80;
server_name www.beevue.cn;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/footer/bee-primevue-admin.git
git@gitee.com:footer/bee-primevue-admin.git
footer
bee-primevue-admin
Bee-Primevue-Admin
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385