add gopherproxy and simple-amazon

This commit is contained in:
root 2022-10-24 06:53:35 -04:00
parent c0bcb3e620
commit 8060fcdd7d
4 changed files with 90 additions and 0 deletions

13
common/gopherproxy.conf Normal file
View File

@ -0,0 +1,13 @@
add_header Onion-Location http://gp.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion$request_uri;
add_header X-I2P-Location http://vernpl3z5syo5sblwnna2v4ktdwjmdotbta4346zekfi64is7idq.b32.i2p$request_uri;
access_log off;
error_log /var/log/nginx/error.log crit;
location / {
proxy_pass http://10.0.3.57:9995/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host; # so Invidious knows domain
proxy_http_version 1.1; # to keep alive
proxy_set_header Connection ""; # to keep alive
}

13
common/simpleamazon.conf Normal file
View File

@ -0,0 +1,13 @@
add_header Onion-Location http://az.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion$request_uri;
add_header X-I2P-Location http://vernlncxo4aswplv7naacpjvp5ts4uhrv4wbv3y4skufdbz763gq.b32.i2p$request_uri;
access_log off;
error_log /var/log/nginx/error.log crit;
location / {
proxy_pass http://10.0.3.57:9994/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host; # so Invidious knows domain
proxy_http_version 1.1; # to keep alive
proxy_set_header Connection ""; # to keep alive
}

32
conf.d/gopherproxy.conf Normal file
View File

@ -0,0 +1,32 @@
server {
listen 80;
listen [::]:80;
server_name gopherproxy.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion gp.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion;
include common/gopherproxy.conf;
}
server {
listen 11058;
listen [::]:11058;
server_name vernpl3z5syo5sblwnna2v4ktdwjmdotbta4346zekfi64is7idq.b32.i2p;
include common/gopherproxy.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name gopherproxy.vern.cc gp.vern.cc;
include common/gopherproxy.conf;
include snippets/lets-encrypt.conf;
}
server {
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
server_name gopherproxy.vern.cc gp.vern.cc;
}

32
conf.d/simpleamazon.conf Normal file
View File

@ -0,0 +1,32 @@
server {
listen 80;
listen [::]:80;
server_name simpleamazon.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion az.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion;
include common/simpleamazon.conf;
}
server {
listen 11059;
listen [::]:11059;
server_name vernlncxo4aswplv7naacpjvp5ts4uhrv4wbv3y4skufdbz763gq.b32.i2p;
include common/simpleamazon.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name simpleamazon.vern.cc az.vern.cc;
include common/simpleamazon.conf;
include snippets/lets-encrypt.conf;
}
server {
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
server_name simpleamazon.vern.cc az.vern.cc;
}