From 3ccf0e454f535d4c1b5787727e9e1d06be471e85 Mon Sep 17 00:00:00 2001 From: bookcorner Date: Sun, 26 Jul 2026 02:25:33 +0400 Subject: Initial commit --- etc/httpd/_acme.conf | 4 ++++ etc/httpd/_listen443.conf | 8 ++++++++ etc/httpd/_listen80.conf | 1 + 3 files changed, 13 insertions(+) create mode 100644 etc/httpd/_acme.conf create mode 100644 etc/httpd/_listen443.conf create mode 100644 etc/httpd/_listen80.conf (limited to 'etc/httpd') diff --git a/etc/httpd/_acme.conf b/etc/httpd/_acme.conf new file mode 100644 index 0000000..3c1a0ec --- /dev/null +++ b/etc/httpd/_acme.conf @@ -0,0 +1,4 @@ +location "/.well-known/acme-challenge/*" { + root "/acme" + request strip 2 +} diff --git a/etc/httpd/_listen443.conf b/etc/httpd/_listen443.conf new file mode 100644 index 0000000..12ffc19 --- /dev/null +++ b/etc/httpd/_listen443.conf @@ -0,0 +1,8 @@ +listen on * tls port 443 + +tls { + certificate "/etc/ssl/bookcorner.ge.fullchain.pem" + key "/etc/ssl/private/bookcorner.ge.key" +} + +hsts preload diff --git a/etc/httpd/_listen80.conf b/etc/httpd/_listen80.conf new file mode 100644 index 0000000..8e0f854 --- /dev/null +++ b/etc/httpd/_listen80.conf @@ -0,0 +1 @@ +listen on * port 80 -- cgit v1.2.3