googlecreativelab / coder

A simple way to make web stuff on Raspberry Pi
http://goo.gl/coder
Apache License 2.0
2.42k stars 276 forks source link

Option to make a Coder public #40

Open bencharp opened 10 years ago

bencharp commented 10 years ago

How can I use my domain name with my Coder ? It will also great to have an option to make an app available for people without the password connection.

ericgundrum commented 10 years ago

Line 68 of server.js lists which apps do not require authentication:

publicAllowed = ["auth","eyeball"]; //apps that are exempt from any login (should only be auth)`

Adding an app to this list (as with "eyeball" above) makes the app accessible to anyone with the URL. Just be careful not to add "editor" or anything else that might compromise your server.

bencharp commented 10 years ago

Thanks !

This could be an option in an advanced settings panel with a warning about risks ?!