Skip to content

Commit

Permalink
creation de .docker/
Browse files Browse the repository at this point in the history
  • Loading branch information
clementdelafontaine committed Jun 6, 2024
1 parent 2323089 commit 29c3fae
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .docker/nginx-default.conf.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
server {
listen 80;
server_name localhost;

location / {
root /usr/share/nginx/html;

default_type "text/html";
try_files $uri $uri.html $uri/index.html index.html;
}


error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

}

0 comments on commit 29c3fae

Please sign in to comment.