Initial commit

This commit is contained in:
Fergal Moran
2022-04-05 11:49:57 +01:00
parent 424cdbc02f
commit f2cde38a0f
55 changed files with 10255 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}