foo
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget curl vim nano zsh fzf tmux
|
||||
wget curl vim nano zsh fzf tmux nextcloud
|
||||
];
|
||||
|
||||
imports =
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
environment.systemPackages = with pkgs; [ nextcloud ];
|
||||
|
||||
services.nginx.virtualHosts."cloud.stubbe.rocks" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
root = /etc/per-user-pkgs/nextcloud;
|
||||
root = pkgs.nextcloud;
|
||||
extraConfig = ''
|
||||
# Add headers to serve security related headers
|
||||
# Before enabling Strict-Transport-Security headers please read into this
|
||||
@@ -138,5 +141,5 @@
|
||||
'';
|
||||
};
|
||||
|
||||
services.nginx.upstreams.php-handler.servers = ["unix:/run/php-fpm/php-fpm.sock"];
|
||||
# services.nginx.upstreams.php-handler.servers = ["unix:/run/php-fpm/php-fpm.sock"];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user