Nginx: Difference between revisions
imported>Makefu m spacing |
imported>Makefu add note about nixos options |
||
| Line 10: | Line 10: | ||
} ) | } ) | ||
]; | ]; | ||
} | |||
</syntaxHighlight> | |||
When utilizing Nixos options the following configuration will also work: | |||
<syntaxHighlight lang=nix> | |||
{ | |||
services.nginx.package = pkgs.nginxStable.override { openssl = pkgs.libressl; }; | |||
} | } | ||
</syntaxHighlight> | </syntaxHighlight> | ||