This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/carbon/services/routes/penpot.nix

24 lines
679 B
Nix
Raw Normal View History

{ pkgs, config, ... }: {
services.nginx = {
virtualHosts = {
"penpot.${config.networking.domain}" = {
forceSSL = true;
enableACME = true;
# Todo fix font routes
locations."/" = {
proxyPass = " http://32.54.31.241:9032";
extraConfig = ''
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
access_log /var/log/nginx/$server_name-access.log json_analytics;
'';
};
};
};
};
}