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/riot-client.conf
2020-05-16 19:52:46 -05:00

22 lines
463 B
Text

##
# Riot Client
##
server {
listen 8808 default_server;
listen [::]:8808 default_server;
root /home/shadow8t4/riot-v1.6.0/;
index index.html index.htm index.nginx-debian.html;
server_name riot.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;
}
}