We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
How to implement basic authorization to the admin area of gstream? Is it possible at all?
The text was updated successfully, but these errors were encountered:
use nginx as the proxy
Sorry, something went wrong.
Could you drop some simple example? I've tried with Apache proxy but with null results.
https://christianfei.com/posts/setup-nginx-as-a-reverse-proxy-with-basic-auth-for-an-upstream/
my nginx conf example:
worker_processes 4; events { worker_connections 1024; } http { upstream app { server 127.0.0.1:20118; keepalive 64; } server { listen *:20228; server_name _; access_log /var/log/nginx/nginx.access.log; error_log /var/log/nginx/nginx.error.log; auth_basic "Restricted Area"; auth_basic_user_file /etc/nginx/.htpasswd; location / { proxy_pass http://app; } } }
No branches or pull requests
Hello,
How to implement basic authorization to the admin area of gstream? Is it possible at all?
The text was updated successfully, but these errors were encountered: