From 0c0a7284c2fdbb36c37bb5a579ee02422700d1d5 Mon Sep 17 00:00:00 2001
From: lost-skunk <142628558+lost-skunk@users.noreply.github.com>
Date: Tue, 5 Sep 2023 13:27:42 +0000
Subject: [PATCH 1/3] Update README.md
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index f0c35ec..3f20bba 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,7 @@
| [bn.vern.cc](https://bn.vern.cc) | [yes!](http://bn.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion/) | [yes!](http://verne3vnw4i3qffozcjygtnv4uedwedtevxe7aoht7fngduuwcpa.b32.i2p/) | 🇺🇸 US |
| [pinterest.foxhaven.cyou](https://pinterest.foxhaven.cyou) | no | no | 🇵🇱 PL |
| [bn.opnxng.com](https://bn.opnxng.com) | no | no | 🇸🇬 SG |
+| tor-only | [yes!](http://binternet.skunky7dhv7nohsoalpwe3sxfz3fbkad7r3wk632riye25vqm3meqead.onion/) | no | 🇷🇺 RU |
From 8989f20da9c1100c3e5b7a42af7b89d27c2a9136 Mon Sep 17 00:00:00 2001
From: lost-skunk <142628558+lost-skunk@users.noreply.github.com>
Date: Tue, 5 Sep 2023 13:35:49 +0000
Subject: [PATCH 2/3] Create example-tor-nginx.conf
---
example-tor-nginx.conf | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 example-tor-nginx.conf
diff --git a/example-tor-nginx.conf b/example-tor-nginx.conf
new file mode 100644
index 0000000..8703e52
--- /dev/null
+++ b/example-tor-nginx.conf
@@ -0,0 +1,36 @@
+#replace everything in <> with your own values
+
+events {
+ worker_connections 1024;
+}
+
+http {
+ include mime.types;
+ default_type application/octet-stream;
+
+ server {
+ listen 127.0.0.1:;
+ server_name xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion;
+ allow 127.0.0.1;
+ deny all;
+ server_tokens off;
+ rewrite ^/(.*) http://binternet.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion/$1 permanent;
+ }
+
+ server {
+ listen 127.0.0.1:;
+ server_name binternet.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion;
+ allow 127.0.0.1;
+ deny all;
+ server_tokens off;
+ root ;
+ index index.php;
+
+ location ~ \.php$ {
+ try_files $uri $uri/ =404;
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
+ include fastcgi.conf;
+ }
+ }
+}
From a9ee9309b8fbe3dba9b2a27d624336b954e28421 Mon Sep 17 00:00:00 2001
From: Ahwx
Date: Tue, 5 Sep 2023 15:52:22 +0200
Subject: [PATCH 3/3] revert(example-tor-nginx.conf): I don't think we need
this as I don't want to be support for people doing this
---
example-tor-nginx.conf | 36 ------------------------------------
1 file changed, 36 deletions(-)
delete mode 100644 example-tor-nginx.conf
diff --git a/example-tor-nginx.conf b/example-tor-nginx.conf
deleted file mode 100644
index 8703e52..0000000
--- a/example-tor-nginx.conf
+++ /dev/null
@@ -1,36 +0,0 @@
-#replace everything in <> with your own values
-
-events {
- worker_connections 1024;
-}
-
-http {
- include mime.types;
- default_type application/octet-stream;
-
- server {
- listen 127.0.0.1:;
- server_name xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion;
- allow 127.0.0.1;
- deny all;
- server_tokens off;
- rewrite ^/(.*) http://binternet.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion/$1 permanent;
- }
-
- server {
- listen 127.0.0.1:;
- server_name binternet.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.onion;
- allow 127.0.0.1;
- deny all;
- server_tokens off;
- root ;
- index index.php;
-
- location ~ \.php$ {
- try_files $uri $uri/ =404;
- fastcgi_split_path_info ^(.+\.php)(/.+)$;
- fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
- include fastcgi.conf;
- }
- }
-}