1 Star 0 Fork 479

futureai / 领课教育系统-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/futureai_admin/roncoo-education-admin.git
git@gitee.com:futureai_admin/roncoo-education-admin.git
futureai_admin
roncoo-education-admin
领课教育系统-Admin端
master

搜索帮助