nix-config/modules
Bruno BELANYI 5fcc96ab77 modules: services: matrix: SSL only for server
This is a requirement anyway for homeservers, and the `forceSSL` option
tried to create a redirect for non-SSL traffic, except the `listen`
option only provided SSL endpoints anyway, so this resulted in
additional rules in the nginx config looking like this:

```nginx
server {
        server_name matrix.belanyi.fr ;
        location /.well-known/acme-challenge {
                root /var/lib/acme/acme-challenge;
                auth_basic off;
        }
        location / {
                return 301 https://$host$request_uri;
        }
}
```
2021-07-13 17:43:31 +02:00
..
hardware modules: hardware: sound: refactor options 2021-06-27 01:59:07 +02:00
services modules: services: matrix: SSL only for server 2021-07-13 17:43:31 +02:00
system modules: change username configuration option 2021-06-25 20:45:36 +02:00
default.nix modules: move home configuration from flake 2021-06-25 20:46:36 +02:00
home.nix modules: move home configuration from flake 2021-06-25 20:46:36 +02:00