This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
powerpanel-webview/nginx/landing-page.conf
2020-05-16 19:52:46 -05:00

22 lines
492 B
Text

##
# Werefox Software Landing Page
##
server {
listen 80 default_server;
listen [::]:80 default_server;
root /home/shadow8t4/werefoxsoftware-landing-page/;
index index.html index.htm index.nginx-debian.html;
server_name pf.werefox.dev;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
}