skip to Main Content

Page under maintenance in NGINX

Sometimes I need to stop my website to put it under maintenance and I use the following NGINX configuration: server { server_name mypage.com; listen 443 ssl http2; listen [::]:443 ssl http2; root /var/www/mypage.com/public_html/; index maintenance.html; } The question is, if…

VIEW QUESTION

nginx, reverse proxy wss, spring boot

Trying to setup reverse proxy with WS support, but I'm getting 403 (forbidden). I'm confused why it happen, because everything works as expected without proxy. My config is here: server { root /var/www/html8080; server_name game.memoux.com; # managed by Certbot listen…

VIEW QUESTION
Back To Top
Search