mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
server {
|
|
server_name _;
|
|
|
|
listen 3000;
|
|
listen [::]:3000;
|
|
|
|
location / {
|
|
root /app/;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html = 404;
|
|
}
|
|
} |