initial commit
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
# ./custom-nginx.conf (on your host)
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
root /usr/share/nginx/html; # Path INSIDE the container where site files will be
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri.html $uri/ =404;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user