mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
All users can login. Only admin users can see logs and make changes. LIMITATION: Only certain functions such as service management is possible. Functions such as networking and user management is read-only. This problem does not occur for user belonging to the 'sudo' group. - Move to system section from applications section. - Rename action script to cockpit instead of cockpit. - Deal with .socket/.service correctly. - Implement hooks on domain name changes and update configuration correctly. - Host the application under /_cockpit instead of /cockpit because it is reserved. - Update description. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
17 lines
377 B
Plaintext
17 lines
377 B
Plaintext
##
|
|
## On all sites, provide cockpit on the path: /_cockpit/
|
|
##
|
|
## Requires the following Apache modules to be enabled:
|
|
## mod_headers
|
|
## mod_proxy
|
|
## mod_proxy_http
|
|
## mod_proxy_wstunnel
|
|
##
|
|
<Location /_cockpit/>
|
|
ProxyPass http://localhost:9090/_cockpit/
|
|
</Location>
|
|
|
|
<Location /_cockpit/cockpit/socket>
|
|
ProxyPass ws://localhost:9090/_cockpit/socket
|
|
</Location>
|