aboutsummaryrefslogtreecommitdiff
path: root/misc/byspel.conf
diff options
context:
space:
mode:
Diffstat (limited to 'misc/byspel.conf')
-rw-r--r--misc/byspel.conf17
1 files changed, 17 insertions, 0 deletions
diff --git a/misc/byspel.conf b/misc/byspel.conf
new file mode 100644
index 0000000..854bf33
--- /dev/null
+++ b/misc/byspel.conf
@@ -0,0 +1,17 @@
+server {
+ server_name byspel.*;
+ listen 80;
+ listen [::]:80;
+ listen 443 ssl;
+ listen [::]:443 ssl;
+
+ error_page 501 502 503 /error/5xx.html;
+ location /error {
+ root /usr/share/byspel/www;
+ try_files $uri =404;
+ }
+
+ location / {
+ proxy_pass http://localhost:8555;
+ }
+}