12 lines
235 B
Text
12 lines
235 B
Text
server {
|
|
# OWOWOWOWOWOW
|
|
listen 80 http2;
|
|
|
|
root /var/www/html;
|
|
index index.html;
|
|
location / {
|
|
# First attempt to serve request as file, then
|
|
# as directory, then fall back to displaying a 404.
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|