summaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-09-02 17:46:03 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-09-02 17:46:03 -0600
commit19bea535ece0b76a640ab24f69a05ed61f4d9670 (patch)
tree2d17e324cb45eb336908ebadaa6dc8abc2647073 /nginx.conf
parent29ba1c29d7ada13a9e6d475ca880d121a85894ea (diff)
downloadjumpstorm-19bea535ece0b76a640ab24f69a05ed61f4d9670.tar.gz
jumpstorm-19bea535ece0b76a640ab24f69a05ed61f4d9670.zip
docker. minor updates that don't really need any message.
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf19
1 files changed, 19 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000..6aac36f
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,19 @@
+server {
+ listen 80;
+
+ location / {
+ root /usr/share/nginx/html/;
+ index index.html;
+ try_files $uri $uri/ /index.html;
+ }
+
+ location /api {
+ proxy_pass http://server:8080;
+
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header Host $host;
+ }
+}