From: nutra-bot Date: Mon, 5 Jan 2026 05:46:29 +0000 (+0000) Subject: wip X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=a80126fafdf12762631b010ea86bef014c0cf207;p=nutratech%2Fvps-root.git wip --- diff --git a/etc/nginx/conf.d/default.conf b/etc/nginx/conf.d/default.conf index 4f6617a..08c5040 100644 --- a/etc/nginx/conf.d/default.conf +++ b/etc/nginx/conf.d/default.conf @@ -1,3 +1,20 @@ +server { + listen 80; + server_name 216.218.216.163; + root /var/www/moms-website; + index index.html; + location / { + try_files $uri $uri/ /index.html; + } + location /store { + proxy_pass http://localhost:9000; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection 'upgrade'; + proxy_set_header Host $host; + proxy_cache_bypass $http_upgrade; + } +} # Redirect all HTTP to HTTPS with no-WWW server { listen 80 default_server;