summaryrefslogtreecommitdiff
path: root/nginx/sites
diff options
context:
space:
mode:
Diffstat (limited to 'nginx/sites')
-rw-r--r--nginx/sites/notif.vainsocial.dev.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/nginx/sites/notif.vainsocial.dev.conf b/nginx/sites/notif.vainsocial.dev.conf
new file mode 100644
index 0000000..034decc
--- /dev/null
+++ b/nginx/sites/notif.vainsocial.dev.conf
@@ -0,0 +1,13 @@
+server {
+
+ listen 80;
+ listen [::]:80;
+
+ server_name notif.vainsocial.dev;
+
+ location / {
+ proxy_pass http://websocket;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection $connection_upgrade; }
+}