From 954ab1887b20e9e0d5885c1cec8d71641cb3dcd4 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 13 Aug 2026 16:29:05 +0100 Subject: remove homelab config --- ansible/roles/http/templates/nginx/joeac.net.conf | 24 ----------------------- 1 file changed, 24 deletions(-) delete mode 100644 ansible/roles/http/templates/nginx/joeac.net.conf (limited to 'ansible/roles/http/templates/nginx') diff --git a/ansible/roles/http/templates/nginx/joeac.net.conf b/ansible/roles/http/templates/nginx/joeac.net.conf deleted file mode 100644 index 9f28fee..0000000 --- a/ansible/roles/http/templates/nginx/joeac.net.conf +++ /dev/null @@ -1,24 +0,0 @@ -server { - listen {{ services.http.port }}; - listen [::]:{{ services.http.port }}; - server_name joeac.net; - - location / { - root {{ http_files_dir }}/html; - try_files $uri $uri.html $uri/index.html $uri.php $uri/index.php =404; - } - - error_page 404 /error.html; - - location ~ \.php$ { - root html; - fastcgi_pass unix:/run/php8.5-fpm-joeac.net-http.sock; - fastcgi_index index.php; - fastcgi_param SCRIPT_FILENAME /var/joeac.net-http/html$fastcgi_script_name; - include fastcgi_params; - } - - location ~ /\.sqlite { - deny all; - } -} -- cgit v1.2.3