diff options
author | Paul Duncan <pabs@pablotron.org> | 2025-06-02 02:01:55 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2025-06-02 02:01:55 -0400 |
commit | aff48c6ae9c9ec86925473ca8b72c98569ed8fdc (patch) | |
tree | 85c43662b5378f7845fa0769a078e1705d9a6209 | |
parent | fe46f33b0b167c65808e8f9fa008f9724e0d8800 (diff) | |
download | pablotron.org-aff48c6ae9c9ec86925473ca8b72c98569ed8fdc.tar.xz pablotron.org-aff48c6ae9c9ec86925473ca8b72c98569ed8fdc.zip |
static/files/articles/site-backend/: use new vanity onion address
3 files changed, 12 insertions, 12 deletions
diff --git a/static/files/articles/site-backend/pablotron.onion.conf.txt b/static/files/articles/site-backend/pablotron.onion.conf.txt new file mode 100644 index 0000000..26b340b --- /dev/null +++ b/static/files/articles/site-backend/pablotron.onion.conf.txt @@ -0,0 +1,11 @@ +server { + listen unix:/var/run/tor/pablotron.sock; + server_name pablotronfils76sk6pwvyoosvfjbhxe3sn4c654e4na4szidbnbqdyd.onion; + root /store/www/pablotronfils76sk6pwvyoosvfjbhxe3sn4c654e4na4szidbnbqdyd.onion/htdocs; + index index.html; + access_log /var/log/nginx/pablotron-access.log; + + # enable compression, compress common types + gzip on; + gzip_types text/html text/plain text/xml text/css text/javascript application/x-javascript text/csv application/json text/json image/svg+xml; +} diff --git a/static/files/articles/site-backend/pablotron.org.conf.txt b/static/files/articles/site-backend/pablotron.org.conf.txt index 34ce8a6..59ef28c 100644 --- a/static/files/articles/site-backend/pablotron.org.conf.txt +++ b/static/files/articles/site-backend/pablotron.org.conf.txt @@ -31,7 +31,7 @@ Header append "Access-Control-Allow-Methods" "POST, GET, HEAD, OPTIONS" # expose tor onion service (2025-05-18) - Header set "Onion-Location" "http://pabstordmsrzhushs5drpb5mtb2ml56iyacidsjfebl2jlss65rlbsqd.onion%{REQUEST_URI}s" + Header set "Onion-Location" "http://pablotronfils76sk6pwvyoosvfjbhxe3sn4c654e4na4szidbnbqdyd.onion%{REQUEST_URI}s" # cache images, stylesheets, and javascript for 1 year <FilesMatch "\.(ico|jpg|jpeg|png|gif|webp|svg|js|json|css)$"> diff --git a/static/files/articles/site-backend/pabstor.conf.txt b/static/files/articles/site-backend/pabstor.conf.txt deleted file mode 100644 index 533e088..0000000 --- a/static/files/articles/site-backend/pabstor.conf.txt +++ /dev/null @@ -1,11 +0,0 @@ -server { - listen unix:/var/run/tor/pabstor.sock; - server_name pabstordmsrzhushs5drpb5mtb2ml56iyacidsjfebl2jlss65rlbsqd.onion; - root /store/www/pabstordmsrzhushs5drpb5mtb2ml56iyacidsjfebl2jlss65rlbsqd.onion/htdocs; - index index.html; - access_log /var/log/nginx/pabstor-access.log; - - # enable compression, compress common types - gzip on; - gzip_types text/html text/plain text/xml text/css text/javascript application/x-javascript text/csv application/json text/json image/svg+xml; -} |