30 Star 340 Fork 482

领课网络 / 领课教育系统-Admin端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
领课 提交于 2022-09-29 14:04 . 架构功能升级
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 /gateway/ {
proxy_pass http://localhost:8180/;
}
location / {
root /usr/share/nginx/html;
}
}
}
JavaScript
1
https://gitee.com/roncoocom/roncoo-education-admin.git
git@gitee.com:roncoocom/roncoo-education-admin.git
roncoocom
roncoo-education-admin
领课教育系统-Admin端
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891