AndrewGriffinGIT
AndrewGriffinGIT
@TheoMathurin Hi Theo, I am also running nginx reverse proxy and having hard time with azure oauth. Keeps saying The redirect URI does not match. Any tips on what my...
@TheoMathurin hmm i tried what you suggested but that returns ERROR: 'module' object is not callable @property def login_url(self): if config.oauth_redirect_uri is None: return '/login' else: return urlparse(config.oauth_redirect_uri).path + '/login'
Still cant get this thing to work properly. No longer complains about redirect mismatch but app does not come up. Registered the redirect on azure. When i login into the...
http { upstream frontends { least_conn; keepalive_timeout 180s; keepalive_requests 100; #keepalive 10; server 127.0.0.1:5100; server 127.0.0.1:5101; server 127.0.0.1:5102; server 127.0.0.1:5103; server 127.0.0.1:5104; } sendfile on; tcp_nopush on; tcp_nodelay on; #keepalive_timeout...
--oauth-redirect-uri=https://myappserver.com
502 https://myappserver.com/login?next=%2F%3Fcode......
@property def login_url(self): if config.oauth_redirect_uri is None: return '/login' else: return urlparse.urlparse(config.oauth_redirect_uri).path + '/login'
azure would only need the web redirect url setup right? Json web tokens wont fly around here.