21 lines
461 B
Nix
21 lines
461 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# services.convos = {
|
||
|
# enable = true;
|
||
|
# reverseProxy = true;
|
||
|
# };
|
||
|
|
||
|
# services.nginx.virtualHosts."convos.isomorphis.me" = {
|
||
|
# enableACME = true;
|
||
|
# forceSSL = true;
|
||
|
# locations."/" = {
|
||
|
# proxyPass = "http://localhost:3000";
|
||
|
# proxyWebsockets = true;
|
||
|
# };
|
||
|
# extraConfig = ''
|
||
|
# client_max_body_size 0;
|
||
|
# proxy_set_header X-Request-Base "$scheme://$host/";
|
||
|
# '';
|
||
|
# };
|
||
|
}
|