cmc/dotfiles

Using GNU Stow to manage my dotfiles.

clone: git clone https://gitbay.org/cmc/dotfiles.git

ed3553db3ac16a9f8e56598b3c88c371adcdeb3b

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-03-04T03:32:34Z

remove pgp
 linux/nginx/etc/nginx/conf.d/michelangelo.conf | 17 +++++++++++++++++
 linux/nginx/etc/nginx/conf.d/pgp.conf          | 13 -------------
 2 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/linux/nginx/etc/nginx/conf.d/michelangelo.conf b/linux/nginx/etc/nginx/conf.d/michelangelo.conf
new file mode 100644
index 0000000..9a2a475
--- /dev/null
+++ b/linux/nginx/etc/nginx/conf.d/michelangelo.conf
@@ -0,0 +1,17 @@
+server {
+	listen 443 ssl;
+	http2 on;
+	server_name michelangelo.cleberg.net;
+	include custom.d/tls/ssl_engine.conf;
+	include custom.d/tls/certificate_files.conf;
+	include custom.d/tls/policy_balanced.conf;
+	include custom.d/basic.conf;
+
+	location / {
+		proxy_pass http://127.0.0.1:3000;
+		proxy_set_header Host $host;
+		proxy_set_header X-Real-IP $remote_addr;
+		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+		proxy_set_header X-Forwarded-Proto $scheme;
+	}
+}
diff --git a/linux/nginx/etc/nginx/conf.d/pgp.conf b/linux/nginx/etc/nginx/conf.d/pgp.conf
deleted file mode 100644
index a0c54de..0000000
--- a/linux/nginx/etc/nginx/conf.d/pgp.conf
+++ /dev/null
@@ -1,13 +0,0 @@
-server {
-	listen [::]:443 ssl;
-	listen 443 ssl;
-	http2 on;
-	server_name pgp.cleberg.net;
-	root /var/www/pgp/;
-	include custom.d/tls/ssl_engine.conf;
-	include custom.d/tls/certificate_files.conf;
-	include custom.d/tls/policy_balanced.conf;
-	include custom.d/basic.conf;
-	location / { try_files $uri $uri/ /index.html; }
-	include custom.d/security/robots_index_only.conf;
-}