# 基于Spring Security的RBAC模型权限管理系统 **Repository Path**: alizipeng/security ## Basic Information - **Project Name**: 基于Spring Security的RBAC模型权限管理系统 - **Description**: 基于Spring Security的RBAC模型权限管理系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-07-04 - **Last Updated**: 2022-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 基于Spring Security的RBAC通用权限管理系统 > 在线体验地址:http://119.91.120.143 ## Nginx网关配置 ```nginx # 全局块 worker_processes 1; # 工作进程数设置为 1 # events块 events{ # 单个工作进程可以允许同时建立外部连接的数量 worker_connections 1024; } # http块 http{ # http全局块 #设定mime类型,类型由mime.type文件定义 include mime.types; #默认文件类型 default_type application/octet-stream; sendfile on; tcp_nopush on; keepalive_timeout 120; #长连接超时时间,单位是秒 send_timeout 30; #指定客户端的响应超时时间 gzip on; #开启gzip压缩输出 gzip_http_version 1.0; #压缩版本 gzip_comp_level 2; #压缩级别,1-10,数字越大压缩的越好 gzip_min_length 1k; #设置允许压缩的页面最小字节数 gzip_types text/plain application/x-javascript text/css application/xml; #压缩类型 gzip_disable "MSIE [1-6]."; #IE6及以下禁止压缩 # http-server块 server{ # 全局块 listen 80; server_name 119.91.120.143;# ip地址 # location块 location /api { # 请求转发到后端服务程序 proxy_pass http://localhost:8080; } # 前端路由 location / { root /home/rbac-security/vue; index index.html index.htm; } } } ```