fix:update table sql
This commit is contained in:
66
config/etc/nginx/omc.conf
Normal file
66
config/etc/nginx/omc.conf
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
server {
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
server_name 0.0.0.0;
|
||||||
|
root /usr/local/omc/htdocs/front/;
|
||||||
|
index index.html index.htm;
|
||||||
|
server_name localhost;
|
||||||
|
# SSL
|
||||||
|
ssl_certificate /usr/local/omc/etc/certs/ca_cert.pem;
|
||||||
|
ssl_certificate_key /usr/local/omc/etc/certs/private_key.pem;
|
||||||
|
#ssl_certificate /usr/local/omc/etc/certs/tsa-omc.pem;
|
||||||
|
#ssl_certificate_key /usr/local/omc/etc/certs/tsa-omc_pri.pem;
|
||||||
|
|
||||||
|
# location /api/rest/securityManagement {
|
||||||
|
# proxy_pass http://127.0.0.1:5050;
|
||||||
|
# }
|
||||||
|
# location /api/rest/resourceManagement {
|
||||||
|
# proxy_pass http://127.0.0.1:5050;
|
||||||
|
# }
|
||||||
|
# location /api/rest/performanceManagement {
|
||||||
|
# proxy_pass http://127.0.0.1:5050;
|
||||||
|
# }
|
||||||
|
# location /api/rest/faultManagement {
|
||||||
|
# proxy_pass http://127.0.0.1:5050;
|
||||||
|
# }
|
||||||
|
# location /api/rest/aaaa/ {
|
||||||
|
# proxy_pass http://127.0.0.1:4040;
|
||||||
|
# }
|
||||||
|
location /api/rest/ {
|
||||||
|
proxy_pass http://127.0.0.1:3030;
|
||||||
|
}
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 8888 default_server;
|
||||||
|
listen [::]:8888 default_server;
|
||||||
|
root /usr/local/omc/htdocs/front/;
|
||||||
|
index index.html index.htm;
|
||||||
|
server_name localhost;
|
||||||
|
|
||||||
|
location /omc-api/ {
|
||||||
|
proxy_pass http://127.0.0.1:3030/;
|
||||||
|
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $host;
|
||||||
|
proxy_set_header X-Forwarded-Port $server_port;
|
||||||
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/local/omc/htdocs/front;
|
||||||
|
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
index index.html index.htm;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,4 +1,12 @@
|
|||||||
config
|
config
|
||||||
sys_config
|
sys_config
|
||||||
|
sys_dept
|
||||||
sys_job
|
sys_job
|
||||||
|
sys_post
|
||||||
|
sys_role
|
||||||
|
sys_role_dept
|
||||||
|
sys_role_menu
|
||||||
|
sys_user
|
||||||
|
sys_user_post
|
||||||
|
sys_user_role
|
||||||
#end
|
#end
|
||||||
@@ -43,20 +43,9 @@ rs_subscribe
|
|||||||
security_log
|
security_log
|
||||||
session
|
session
|
||||||
sys_backup
|
sys_backup
|
||||||
sys_dept
|
|
||||||
sys_extended
|
|
||||||
sys_job
|
|
||||||
sys_job_log
|
sys_job_log
|
||||||
sys_log_login
|
sys_log_login
|
||||||
sys_log_operate
|
sys_log_operate
|
||||||
sys_perf_data
|
|
||||||
sys_post
|
|
||||||
sys_role
|
|
||||||
sys_role_dept
|
|
||||||
sys_role_menu
|
|
||||||
sys_user
|
|
||||||
sys_user_post
|
|
||||||
sys_user_role
|
|
||||||
system_log
|
system_log
|
||||||
trace_data
|
trace_data
|
||||||
trace_task
|
trace_task
|
||||||
|
|||||||
Reference in New Issue
Block a user