configs: Update scripts and config for new ui
This commit is contained in:
parent
74e8c3801a
commit
102a0878ac
7 changed files with 44 additions and 55 deletions
|
|
@ -88,11 +88,6 @@ server {
|
|||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issues {
|
||||
include fic-auth.conf;
|
||||
|
||||
|
|
@ -185,18 +180,18 @@ server {
|
|||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/issue {
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://frontend:8080/issue;
|
||||
proxy_pass http://frontend:8080;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/name {
|
||||
location /chname {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://frontend:8080/chname;
|
||||
proxy_pass http://frontend:8080;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
|
|
|
|||
|
|
@ -57,8 +57,8 @@ server {
|
|||
}
|
||||
}
|
||||
|
||||
location ${FIC_BASEURL} {
|
||||
rewrite ^${FIC_BASEURL}(.*)$ /$1;
|
||||
location ${FIC_BASEURL2} {
|
||||
rewrite ^${FIC_BASEURL2}(.*)$ /$1;
|
||||
}
|
||||
|
||||
location ~ ^/[A-Z] {
|
||||
|
|
@ -72,11 +72,6 @@ server {
|
|||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issues {
|
||||
include fic-auth.conf;
|
||||
|
||||
|
|
@ -164,18 +159,18 @@ server {
|
|||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/issue {
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://${HOST_FRONTEND}/issue;
|
||||
proxy_pass http://${HOST_FRONTEND};
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/name {
|
||||
location /chname {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://${HOST_FRONTEND}/chname;
|
||||
proxy_pass http://${HOST_FRONTEND};
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
|
|
|
|||
|
|
@ -80,11 +80,6 @@ server {
|
|||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /issues {
|
||||
include fic-auth.conf;
|
||||
|
||||
|
|
@ -177,18 +172,18 @@ server {
|
|||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/issue {
|
||||
location /issue {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://frontend:8080/issue;
|
||||
proxy_pass http://frontend:8080;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
}
|
||||
location /submit/name {
|
||||
location /chname {
|
||||
include fic-auth.conf;
|
||||
|
||||
proxy_pass http://frontend:8080/chname;
|
||||
proxy_pass http://frontend:8080;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-FIC-Team $team;
|
||||
proxy_redirect off;
|
||||
|
|
|
|||
Reference in a new issue