mirror of
https://github.com/DerTyp7/tealfire-website.git
synced 2025-10-28 12:22:14 +01:00
14 lines
241 B
Nginx Configuration File
14 lines
241 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
error_page 404 /index.html;
|
|
location = /index.html {
|
|
internal;
|
|
}
|
|
} |