frontend: add dockerfile
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
parent
e636eb65c9
commit
8873fdb2c8
2 changed files with 37 additions and 0 deletions
10
summer2024-frontend/nginx-custom.conf
Normal file
10
summer2024-frontend/nginx-custom.conf
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
server {
|
||||
listen 8080;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
try_files $uri $uri/ /index.html =404;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue