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
is it possible to make a password to vnc access through the web port 8006 ?
vncpasswd
vnc_passwd
No response
The text was updated successfully, but these errors were encountered:
you can use nginx to set password
sudo apt update apt install apache2-utils sudo htpasswd -c /etc/nginx/.htpasswd <your username>
server { listen 8007; server_name localhost; location / { proxy_pass http://localhost:8006; auth_basic "Restricted Content"; auth_basic_user_file /etc/nginx/.htpasswd; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
then, restart
service nginx restart
Sorry, something went wrong.
No branches or pull requests
Is your proposal related to a problem?
is it possible to make a password to vnc access through the web port 8006 ?
Describe the solution you'd like.
vncpasswd
Describe alternatives you've considered.
vnc_passwd
Additional context
No response
The text was updated successfully, but these errors were encountered: