zacc

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

zacc's Achievements

Noob

Noob (1/14)

0

Reputation

  1. hello, is it possible with authelia to protect a subfolder (xxx.ttt.de/bw/) with a one_factor and a subfolder below it (xxx.ttt.de/bw/admin) with a tow_factor? this config is not working ###################################################### - domain: - "xxx.ttt.de" resources: - '^/bw/admin/.*$' subject: - 'user:abc' policy: two_factor ###################################################### - domain: - "xxx.ttt.de" resources: - '^/bw/.*$' subject: - 'user:abc' policy: one_factor ######################################################
  2. hi, my webui crash after a while, but my minecraft instance running fine. If i restart the container can i reach the webui for a while before it crash again. can i restart the webui without stopping minecraft?
  3. Hello, i have problems with my ngnix and psitransfer. my config in swag for a proxy reverse subfolder redirect me back to my root. location /psitransfer { rewrite ^/psitransfer/?(.*)$ /$1; proxy_set_header X-Forwarded-Proto $scheme; proxy_redirect off; set $upstream_app psitransfer; set $upstream_port 3000; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port/psitransfer; }
  4. Hy, i try to run deemix on swag. but its not working. if i try to open the page then redirect it to the startpage. https://www.mypage.goip.de/deemix ----> https://www.mypage.goip.de i tryed with this settings location /deemix { return 301 $scheme://$host/deemix/; } location ^~ /deemix/ { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia, also enable authelia-server.conf in the default site config #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app deemix; set $upstream_port 6595; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } my other proyx sites works fine but deemix dont run sry for my bad english can someone help me pls?