2023-04-07 11:09:21 -04:00
|
|
|
{
|
|
|
|
services.gitea = {
|
|
|
|
enable = true;
|
|
|
|
appName = "Bill's Gitea server, hosted on Linode using NixOS";
|
|
|
|
settings = {
|
2023-06-27 11:26:33 -04:00
|
|
|
server = {
|
|
|
|
DOMAIN = "git.ewanick.com";
|
|
|
|
ROOT_URL = "https://git.ewanick.com/";
|
|
|
|
HTTP_PORT = 3000;
|
|
|
|
};
|
2023-04-07 11:09:21 -04:00
|
|
|
service = {
|
|
|
|
DISABLE_REGISTRATION = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.caddy = {
|
|
|
|
enable = true;
|
|
|
|
virtualHosts = {
|
|
|
|
"git.ewanick.com" = {
|
|
|
|
extraConfig = ''
|
|
|
|
reverse_proxy localhost:3000
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
2023-06-28 19:46:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
# README
|
|
|
|
|
|
|
|
## View users and use the command line
|
|
|
|
|
|
|
|
Do something like this, preferably as the gitea user
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ sudo su gitea
|
|
|
|
$ /nix/store/5xwh7m7252m9ljvr3lyilcza1q699r2c-gitea-1.17.4/bin/gitea -c /var/lib/gitea/custom/conf/app.ini admin user list
|
|
|
|
```
|
|
|
|
*/
|