nginx.conf 167 B

123456
  1. location / {
  2. if ($remote_addr ~ "^__IP4_NAT_PREFIX__.\d+$") {
  3. return 302 __CAPTIVE_PORTAL_URL__;
  4. }
  5. return 302 https://$http_host/yunohost/admin;
  6. }