mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02:00
Added irc service
This commit is contained in:
parent
8ebcb7ef4f
commit
4c9e93f508
3 changed files with 25 additions and 22 deletions
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
|
|
||||||
luj = {
|
luj = {
|
||||||
|
irc.enable = true;
|
||||||
mediaserver = {
|
mediaserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tv.enable = true;
|
tv.enable = true;
|
||||||
|
|
|
@ -2,30 +2,32 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.luj.irc;
|
cfg = config.luj.irc;
|
||||||
port = 9117;
|
port = 2042;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
options.luj.irc = {
|
options.luj.irc = {
|
||||||
enable = mkEnableOption "activate weechat service";
|
enable = mkEnableOption "activate weechat service";
|
||||||
nginx.enable = mkEnableOption "activate nginx";
|
};
|
||||||
nginx.subdomain = mkOption {
|
|
||||||
type = types.str;
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
|
services.weechat.enable = true;
|
||||||
|
services.nginx.virtualHosts."irc.julienmalka.me" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."^~ /weechat" = {
|
||||||
|
proxyPass = "http://127.0.0.1:${builtins.toString port}";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
locations."/" = {
|
||||||
|
root = pkgs.glowing-bear;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (
|
|
||||||
mkMerge [{
|
|
||||||
services.weechat.enable = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
(mkIf cfg.nginx.enable (mkPrivateSubdomain cfg.nginx.subdomain port))
|
|
||||||
|
|
||||||
|
|
||||||
(mkIf cfg.nginx.enable (mkVPNSubdomain cfg.nginx.subdomain port))]);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,11 +21,11 @@ in
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
recommendedOptimisation = true;
|
|
||||||
recommendedTlsSettings = true;
|
|
||||||
recommendedProxySettings = true;
|
|
||||||
clientMaxBodySize = "128m";
|
|
||||||
|
|
||||||
|
recommendedGzipSettings = true;
|
||||||
|
recommendedOptimisation = true;
|
||||||
|
recommendedProxySettings = true;
|
||||||
|
recommendedTlsSettings = true;
|
||||||
commonHttpConfig = ''
|
commonHttpConfig = ''
|
||||||
server_names_hash_bucket_size 128;
|
server_names_hash_bucket_size 128;
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Add table
Reference in a new issue