1 Star 0 Fork 2

limited1010/基于Spring Boot和layui的RBAC权限管理系统:前端项目

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Nginx配置.txt 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
陈浩 提交于 2020-05-15 11:46 . 新建仓库
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
underscores_in_headers on; #开启请求头下划线支持
client_max_body_size 30m; #文件最大大小
proxy_connect_timeout 600; #设置超时时间
proxy_read_timeout 600;
proxy_send_timeout 600;
sendfile on;
keepalive_timeout 65;
server {
listen 8081; #本地Nginx端口
server_name localhost;
location / {
root C:/Users/Administrator/Desktop/Git/work/html; #前端页面路径
index index.html index.htm;
}
location ^~ /mrc/ { #服务端访问前缀
proxy_pass http://localhost:8080;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie $http_cookie;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/linux-5120/spring_boot_layui_rbac_html.git
git@gitee.com:linux-5120/spring_boot_layui_rbac_html.git
linux-5120
spring_boot_layui_rbac_html
基于Spring Boot和layui的RBAC权限管理系统:前端项目
master

搜索帮助