Apply Webmention Function

This commit is contained in:
2026-08-27 21:15:24 +08:00
parent 0b6ba6efb8
commit 46e7e5339d
12 changed files with 715 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
server {
listen 443 ssl http2;
server_name webmention.luming.cool;
# Keep the existing certificate directives from your server configuration.
location / {
proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}