2021-09-23 19:44:32 +02:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
|
|
|
|
location /api {
|
|
|
|
proxy_pass http://localhost:8080;
|
|
|
|
}
|
|
|
|
|
2021-09-23 21:24:27 +02:00
|
|
|
location /editor {
|
|
|
|
alias /var/www/html/editor;
|
|
|
|
}
|
|
|
|
|
2021-09-23 19:44:32 +02:00
|
|
|
location / {
|
2021-09-23 20:09:02 +02:00
|
|
|
root /var/www/html/frontend;
|
2021-09-23 19:44:32 +02:00
|
|
|
}
|
|
|
|
}
|