aboutsummaryrefslogtreecommitdiff
path: root/misc/byspel.conf
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-10-27 18:45:06 -0700
committerJakob Odersky <jakob@odersky.com>2018-10-27 18:45:06 -0700
commitde095d377859887352c7380e52ea89bcabf662a0 (patch)
tree6cee6eb17c1977b85e01078e926499b33854047d /misc/byspel.conf
downloadbyspel-de095d377859887352c7380e52ea89bcabf662a0.tar.gz
byspel-de095d377859887352c7380e52ea89bcabf662a0.tar.bz2
byspel-de095d377859887352c7380e52ea89bcabf662a0.zip
Initial commit
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;
+ }
+}