mirror of https://github.com/YGGverse/YGGbro.git
ghost
12 months ago
6 changed files with 110 additions and 35 deletions
@ -1,32 +0,0 @@ |
|||||||
# Mirror for https://texty.org.ua/ |
|
||||||
# Drops all JS |
|
||||||
|
|
||||||
server { |
|
||||||
|
|
||||||
# HTTP/IPv6 connections only |
|
||||||
# listen [::]:80 ipv6only=on; |
|
||||||
|
|
||||||
# Yggdrasil connections only |
|
||||||
# allow 0200::/7; |
|
||||||
# deny all; |
|
||||||
|
|
||||||
# Tell to server, that's proxy request |
|
||||||
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
|
||||||
# proxy_set_header X-Real-IP $remote_addr; |
|
||||||
|
|
||||||
location /texty.org.ua { |
|
||||||
|
|
||||||
proxy_pass https://texty.org.ua/; |
|
||||||
sub_filter 'http://texty.org.ua' 'http://[$server_addr]/texty.org.ua'; |
|
||||||
sub_filter 'https://texty.org.ua' 'http://[$server_addr]/texty.org.ua'; |
|
||||||
sub_filter '<script' '<!-- <script'; |
|
||||||
sub_filter '</script>' '</script> -->'; |
|
||||||
sub_filter 'href="/support/"' 'href="https://texty.org.ua/p/support"'; |
|
||||||
sub_filter 'href="/' 'href="http://[$server_addr]/texty.org.ua/'; |
|
||||||
sub_filter 'src="/' 'src="http://[$server_addr]/texty.org.ua/'; |
|
||||||
sub_filter 'data-src="/' 'src="http://[$server_addr]/texty.org.ua/'; |
|
||||||
sub_filter "url('/" "url('http://[$server_addr]/texty.org.ua/"; |
|
||||||
sub_filter_once off; |
|
||||||
sub_filter_types *; |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,17 @@ |
|||||||
|
# Nginx proxy configuration for texty.org.ua.bro.ygg |
||||||
|
|
||||||
|
Current implementation drops all JS and forward links to following locations: |
||||||
|
|
||||||
|
* `http://texty.org.ua` > `http://texty.org.ua.bro.ygg` |
||||||
|
|
||||||
|
## Install |
||||||
|
|
||||||
|
* `ln -s /etc/yggbro/nginx/texty.org.ua.bro.ygg/server.conf /etc/nginx/sites-enabled/yggbro.texty.org.ua.bro.ygg.conf` |
||||||
|
* `nginx -t` |
||||||
|
* `service nginx reload` |
||||||
|
|
||||||
|
## Uninstall |
||||||
|
|
||||||
|
* `rm /etc/nginx/sites-enabled/yggbro.texty.org.ua.bro.ygg.conf` |
||||||
|
* `nginx -t` |
||||||
|
* `service nginx reload` |
@ -0,0 +1,38 @@ |
|||||||
|
server { |
||||||
|
|
||||||
|
# HTTP/IPv6 only |
||||||
|
listen [::]:80; |
||||||
|
|
||||||
|
# Yggdrasil only |
||||||
|
allow 0200::/7; |
||||||
|
deny all; |
||||||
|
|
||||||
|
server_name texty.org.ua.bro.ygg; |
||||||
|
|
||||||
|
location / { |
||||||
|
|
||||||
|
# Forward to server |
||||||
|
proxy_pass https://texty.org.ua/; |
||||||
|
|
||||||
|
# Tell to server, that's proxy request |
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
||||||
|
proxy_set_header X-Real-IP $remote_addr; |
||||||
|
|
||||||
|
# Replace links |
||||||
|
sub_filter_once off; |
||||||
|
sub_filter_types *; |
||||||
|
|
||||||
|
sub_filter 'http://texty.org.ua' 'http://texty.org.ua.bro.ygg'; |
||||||
|
sub_filter 'https://texty.org.ua' 'http://texty.org.ua.bro.ygg'; |
||||||
|
sub_filter '<script' '<!-- <script'; |
||||||
|
sub_filter '</script>' '</script> -->'; |
||||||
|
sub_filter 'href="/support/"' 'href="https://texty.org.ua/p/support"'; |
||||||
|
sub_filter 'href="/' 'href="http://texty.org.ua.bro.ygg/'; |
||||||
|
sub_filter 'src="/' 'src="http://texty.org.ua.bro.ygg/'; |
||||||
|
sub_filter 'data-src="/' 'src="http://texty.org.ua.bro.ygg/'; |
||||||
|
sub_filter "url('/" "url('http://texty.org.ua.bro.ygg/"; |
||||||
|
|
||||||
|
# Feedback link to project repository |
||||||
|
sub_filter '</body>' '<a style="position:fixed;top:20px;right:20px;z-index:999" href="https://github.com/YGGverse/YGGbro/tree/main/nginx/texty.org.ua.bro.ygg" target="_blank">YGGbro</a></body>'; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
# Nginx proxy configuration for /yggbro/texty.org.ua |
||||||
|
|
||||||
|
Current implementation drops all JS and forward links to following locations: |
||||||
|
|
||||||
|
* `http://texty.org.ua` > `/yggbro/texty.org.ua` |
||||||
|
|
||||||
|
## Install |
||||||
|
|
||||||
|
* `ln -s /etc/yggbro/nginx/yggbro/texty.org.ua/server.conf /etc/nginx/sites-enabled/yggbro.texty.org.ua.conf` |
||||||
|
* `nginx -t` |
||||||
|
* `service nginx reload` |
||||||
|
|
||||||
|
## Uninstall |
||||||
|
|
||||||
|
* `rm /etc/nginx/sites-enabled/yggbro.texty.org.ua.conf` |
||||||
|
* `nginx -t` |
||||||
|
* `service nginx reload` |
@ -0,0 +1,36 @@ |
|||||||
|
server { |
||||||
|
|
||||||
|
# HTTP/IPv6 only |
||||||
|
listen [::]:80; |
||||||
|
|
||||||
|
# Yggdrasil only |
||||||
|
allow 0200::/7; |
||||||
|
deny all; |
||||||
|
|
||||||
|
location /yggbro/texty.org.ua { |
||||||
|
|
||||||
|
# Forward to server |
||||||
|
proxy_pass https://texty.org.ua/; |
||||||
|
|
||||||
|
# Tell to server, that's proxy request |
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
||||||
|
proxy_set_header X-Real-IP $remote_addr; |
||||||
|
|
||||||
|
# Replace links |
||||||
|
sub_filter_once off; |
||||||
|
sub_filter_types *; |
||||||
|
|
||||||
|
sub_filter 'http://texty.org.ua' 'http://[$server_addr]/yggbro/texty.org.ua'; |
||||||
|
sub_filter 'https://texty.org.ua' 'http://[$server_addr]/yggbro/texty.org.ua'; |
||||||
|
sub_filter '<script' '<!-- <script'; |
||||||
|
sub_filter '</script>' '</script> -->'; |
||||||
|
sub_filter 'href="/support/"' 'href="https://texty.org.ua/p/support"'; |
||||||
|
sub_filter 'href="/' 'href="http://[$server_addr]/yggbro/texty.org.ua/'; |
||||||
|
sub_filter 'src="/' 'src="http://[$server_addr]/yggbro/texty.org.ua/'; |
||||||
|
sub_filter 'data-src="/' 'src="http://[$server_addr]/yggbro/texty.org.ua/'; |
||||||
|
sub_filter "url('/" "url('http://[$server_addr]/yggbro/texty.org.ua/"; |
||||||
|
|
||||||
|
# Feedback link to project repository |
||||||
|
sub_filter '</body>' '<a style="position:fixed;top:20px;right:20px;z-index:999" href="https://github.com/YGGverse/YGGbro/tree/main/nginx/yggbro/texty.org.ua" target="_blank">YGGbro</a></body>'; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue