mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-11-04 20:08:00 +00:00
14 lines
221 B
Plaintext
14 lines
221 B
Plaintext
|
server {
|
||
|
listen 80 default_server;
|
||
|
|
||
|
index index.html;
|
||
|
|
||
|
if (-d $request_filename) {
|
||
|
rewrite [^/]$ $scheme://$http_host$uri/ permanent;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
}
|