mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
- Created basic plinth app which starts an introducer and a storage node on the FreedomBox. - Prompt user to set a domain name before creating Tahoe-LAFS nodes. - Support adding and removing of introducers to the storage node. - Serve Tahoe-LAFS from a different port. - Start all nodes and introducers at system startup. - Add utility class YAMLFile with test cases.
15 lines
328 B
Plaintext
15 lines
328 B
Plaintext
# Tahoe-LAFS Storage Node web interface
|
|
|
|
Listen 5678
|
|
|
|
# XXX: SSL is not configured?
|
|
# TODO: Use subdomain?
|
|
<VirtualHost *:5678>
|
|
<Location "/">
|
|
Include includes/freedombox-auth-ldap.conf
|
|
Require ldap-group cn=admin,ou=groups,dc=thisbox
|
|
|
|
ProxyPass http://localhost:1234/
|
|
</Location>
|
|
</VirtualHost>
|