Files
nixos/hosts/web-arm/sites/cloonar.com.nix

74 lines
1.8 KiB
Nix

{ pkgs, lib, config, ... }:
let
domain = config.networking.domain;
dataDir = "/var/www/${domain}";
in {
services.webstack.instances."${domain}" = {
authorizedKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOXKR0AQdP1zn6pL2yjGA/eo9F5Ah2u6+Y5dIk8wR5/I"
];
locations."/".extraConfig = ''
index index.html;
'';
locations."~* \.(jpe?g|png)$".extraConfig = ''
set $img_format Z;
# Check for AVIF support (highest priority)
if ($http_accept ~* "avif") {
set $img_format A;
}
if (-f $document_root/avif/$request_uri.avif) {
set $img_format "''${img_format}V";
}
# Serve AVIF if supported and available
if ($img_format = "AV") {
add_header Vary Accept;
expires 365d;
add_header Pragma "public";
add_header Cache-Control "public";
rewrite ^ /avif/$request_uri.avif break;
}
# Reset and check for WebP support (fallback)
set $img_format Z;
if ($http_accept ~* "webp") {
set $img_format W;
}
if (-f $document_root/webp/$request_uri.webp) {
set $img_format "''${img_format}P";
}
# Serve WebP if supported and available
if ($img_format = "WP") {
add_header Vary Accept;
expires 365d;
add_header Pragma "public";
add_header Cache-Control "public";
rewrite ^ /webp/$request_uri.webp break;
}
# If neither AVIF nor WebP matched, serve original format
add_header Vary Accept;
expires 365d;
add_header Pragma "public";
add_header Cache-Control "public";
'';
locations."~* \.(js|jpg|gif|png|webp|avif|css|woff2)$".extraConfig = ''
expires 365d;
add_header Pragma "public";
add_header Cache-Control "public";
'';
phpPackage = pkgs.php;
};
}