1 Star 0 Fork 473

翘楚 / roncoo-education-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 820 Bytes
一键复制 编辑 原始数据 按行查看 历史
夏天飘过的风 提交于 2020-12-31 21:35 . 增加dockerfile
user root;
worker_processes 2;
events {
worker_connections 10240;
accept_mutex on;
multi_accept on;
use epoll;
}
http {
include mime.types;
default_type application/octet-stream;
keepalive_timeout 60s;
client_max_body_size 10m;
sendfile on;
gzip on;
gzip_min_length 1024;
gzip_comp_level 2;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_types text/plain application/javascript text/javascript application/x-javascript text/css;
server {
listen 80;
server_name localhost;
location /apis/ {
proxy_pass http://localhost:5840/api/;
}
location / {
root /usr/share/nginx/html;
}
}
}
JavaScript
1
https://gitee.com/sunhw0210/roncoo-education-admin.git
git@gitee.com:sunhw0210/roncoo-education-admin.git
sunhw0210
roncoo-education-admin
roncoo-education-admin
master

搜索帮助