register, login, create and manage sites and pages
This commit is contained in:
22
frontend/nginx.conf
Normal file
22
frontend/nginx.conf
Normal file
@@ -0,0 +1,22 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://backend:8080;
|
||||
}
|
||||
|
||||
location /oauth2/ {
|
||||
proxy_pass http://backend:8080;
|
||||
}
|
||||
|
||||
location /login/ {
|
||||
proxy_pass http://backend:8080;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user