Marco Zeisler 6a913f35c6 copy nginx conf
added default.conf
2021-05-04 21:32:30 +02:00

11 lines
148 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
try_files $uri $uri/ /index.html;
}
}