mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
14 lines
260 B
Plaintext
14 lines
260 B
Plaintext
server {
|
|
server_name _;
|
|
|
|
listen 8080;
|
|
listen [::]:8080;
|
|
|
|
# Admin Frontend
|
|
location /admin {
|
|
rewrite ^/admin/(.*)$ /$1 break;
|
|
root /app/admin/;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html = 404;
|
|
}
|
|
} |