Etebase: Difference between revisions
imported>Reeseovine m typo in example URL |
imported>Underknowledge m Working config with reverse proxy plus minor comments |
||
Line 4: | Line 4: | ||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
networking.firewall.allowedTCPPorts = [ 443 ]; | |||
services = { | |||
etebase-server = { | etebase-server = { | ||
enable = true; | enable = true; | ||
unixSocket = "/var/lib/etebase-server/etebase-server.sock"; | |||
user = "etebase-server"; | |||
settings = { | settings = { | ||
global.secret_file = /path/to/secret; | global.debug = false; | ||
allowed_hosts.allowed_host1 = " | global.secret_file = "/path/to/secret"; # mind permissions | ||
allowed_hosts.allowed_host1 = "etebase.your.domain"; | |||
}; | }; | ||
}; | }; | ||
nginx = { | |||
enable = true; | |||
recommendedOptimisation = true; | |||
recommendedProxySettings = true; | |||
recommendedTlsSettings = true; | |||
recommendedGzipSettings = true; | |||
virtualHosts."etebase.your.domain" = { | |||
enableACME = true; | |||
forceSSL = true; | |||
locations."/".proxyPass = "http://unix:/var/lib/etebase-server/etebase-server.sock"; | |||
}; | |||
}; | |||
}; | |||
</syntaxHighlight> | </syntaxHighlight> | ||
For the server to accept requests from a remote machine {{ic| allowed_host1}} variable should be set as the server's subdomain/domain name. | For the server to accept requests from a remote machine {{ic| allowed_host1}} variable should be set as the server's subdomain/domain name and your proxy has to present a {{ic| Host}} header. | ||
The django [https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-SECRET_KEY secret key] is preferably a randomly generated key, the use of a secret managing scheme might prove useful. see [[Comparison_of_secret_managing_schemes]]. | The django [https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-SECRET_KEY secret key] is preferably a randomly generated key, the use of a secret managing scheme might prove useful. see [[Comparison_of_secret_managing_schemes]]. | ||
Line 31: | Line 47: | ||
As a super user, run this command: <code>ETEBASE_EASY_CONFIG_INI=/path/to/etebase-server.ini etebase-server createsuperuser</code> and that should prompt you to create a user. | As a super user, run this command: <code>ETEBASE_EASY_CONFIG_INI=/path/to/etebase-server.ini etebase-server createsuperuser</code> and that should prompt you to create a user. | ||
Login with these credentials to | Login with these credentials to https://etebase.your.domain/admin and create users for your etebase clients through the GUI. | ||
== See also == | == See also == | ||
* https://github.com/etesync/server#usage | * https://github.com/etesync/server#usage |