You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so i have void auth setup running on Unraid Server..
if i type in 192.168.0.3:3009 i get a blank page.. but if i setup in nginx proxy manager to do
auth.mydoman.duckdns.org
http 192.168.0.3 3009
then i get the log in screen but not through the ip address
if i add the extra for the auth.mydomain....
location / {
include /config/nginx/snippets/proxy.conf;
proxy_pass $forward_scheme://$server:$port;
}
under the Gear and save.. i get a page not found
when i add
include /config/nginx/snippets/auth-location.conf;
location / {
include /config/nginx/snippets/proxy.conf;
# If your protected app uses websockets, un-comment the line below
# include /config/nginx/snippets/websockets.conf;
include /config/nginx/snippets/proxy-auth.conf;
proxy_pass $forward_scheme://$server:$port;
}
to an app it also wont work
so my say Filebrower in unraid
if i dont add the extra advanced code
filebrowser.mydomain.duckdns.org
that works but once i add the extra code it doesnt work
so i could use some help how to set it up as i followed the docs guy but it didnt help
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
so i have void auth setup running on Unraid Server..
if i type in 192.168.0.3:3009 i get a blank page.. but if i setup in nginx proxy manager to do
auth.mydoman.duckdns.org
http 192.168.0.3 3009
then i get the log in screen but not through the ip address
if i add the extra for the auth.mydomain....
under the Gear and save.. i get a page not found
when i add
to an app it also wont work
so my say Filebrower in unraid
if i dont add the extra advanced code
filebrowser.mydomain.duckdns.org
that works but once i add the extra code it doesnt work
so i could use some help how to set it up as i followed the docs guy but it didnt help
Beta Was this translation helpful? Give feedback.
All reactions