pulsebert: serve drkkr.hq.c3d2.de

This commit is contained in:
Astro 2020-12-10 17:26:47 +01:00
parent f4632a422c
commit 6048ea42f1
1 changed files with 28 additions and 3 deletions

View File

@ -4,6 +4,9 @@
{ config, pkgs, ... }:
let
octoprintPort = 8080;
in
{
imports = [ # Include the results of the hardware scan.
<this-host/hardware-configuration.nix>
@ -123,9 +126,33 @@
publish.userServices = true;
};
security.acme = {
acceptTerms = true;
email = "mail@c3d2.de";
};
services.nginx = {
enable = true;
#recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
"drkkr.hq.c3d2.de" = {
default = true;
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString octoprintPort}";
proxyWebsockets = true;
extraConfig = ''
proxy_set_header X-Scheme $scheme;
proxy_set_header Accept-Encoding identity;
'';
};
};
};
};
services.octoprint = rec {
enable = true;
port = 80;
port = octoprintPort;
# extraConfig.webcam = {
# snapshot = "http://localhost:5050?action=snapshot";
# stream = "http://octoprint.local:5050?action=stream";
@ -149,8 +176,6 @@
# #in p: [ octoprint-filament-sensor-universal ];
# in p: [];
};
# Allow binding to port 80
systemd.services.octoprint.serviceConfig.AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ];
# Allow access to printer serial port and GPIO
users.users.${config.services.octoprint.user}.extraGroups = [ "dialout" "gpio" ];