feat: Moved website files to new location
All checks were successful
Build Docker / Build_Docker (push) Successful in 45s

This commit is contained in:
2024-06-20 18:25:48 +10:00
parent 9cbc4a9ab7
commit adc76c8c5e
17 changed files with 1 additions and 1 deletions

12
public/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
server_name _;
access_log off;
location / {
root /var/www/html;
index index.html;
# 404 error page
error_page 404 /index.html;
}
}