aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/http/templates/nginx
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-08-11 21:44:26 +0100
committerJoe Carstairs <me@joeac.net>2026-08-11 21:44:26 +0100
commit74b9185a404ace70030e57e0ad493478227a5eac (patch)
tree5f32d05d842ef726412ead2932d9157fd2f1df58 /ansible/roles/http/templates/nginx
parent4e73a59d76e8c4949908e766657f5d634d39fb67 (diff)
ansible installs joeac.net website
Diffstat (limited to 'ansible/roles/http/templates/nginx')
-rw-r--r--ansible/roles/http/templates/nginx/joeac.net.conf24
1 files changed, 24 insertions, 0 deletions
diff --git a/ansible/roles/http/templates/nginx/joeac.net.conf b/ansible/roles/http/templates/nginx/joeac.net.conf
new file mode 100644
index 0000000..9f28fee
--- /dev/null
+++ b/ansible/roles/http/templates/nginx/joeac.net.conf
@@ -0,0 +1,24 @@
+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;
+ }
+}