Change gitea location to the root of the domain

This commit is contained in:
coolneng 2019-11-23 00:00:47 +01:00
parent 49f06353be
commit 8f3d1b38db
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 4 additions and 18 deletions

View File

@ -8,8 +8,8 @@
# Gitea setup with daily backup
services.gitea = {
enable = true;
domain = "https://coolneng.duckdns.org";
rootUrl = "https://coolneng.duckdns.org/gitea";
domain = "coolneng.duckdns.org";
rootUrl = "https://coolneng.duckdns.org/";
database = {
type = "postgres";
passwordFile = "/var/keys/gitea/db";

View File

@ -64,28 +64,14 @@
locations."/syncthing/" = {
proxyPass = "http://localhost:8384/";
};
locations."/gitea/" = {
locations."/" = {
proxyPass = "http://localhost:3000/";
};
locations."/miniflux/" = {
proxyPass = "http://localhost:8080/miniflux/";
};
locations."/wallabag/" = {
root = "/var/lib/wallabag/web";
tryFiles = "try_files $uri /app.php$is_args$args";
extraConfig = ''
location ~ ^/app\.php(/|$) {
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
'';
proxyPass = "http://localhost:8081/";
};
};
};