From 9fa9d437703db6808473f96b3827787827571cd2 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Tue, 19 Oct 2021 21:07:00 +0300 Subject: [PATCH] init --- LICENSE | 24 ++++++++ favicon.ico | Bin 0 -> 1150 bytes humans.txt | 9 +++ index.html | 156 ++++++++++++++++++++++++++++++++++++++++++++++++++++ nginxconfig | 28 ++++++++++ 5 files changed, 217 insertions(+) create mode 100644 LICENSE create mode 100644 favicon.ico create mode 100644 humans.txt create mode 100644 index.html create mode 100644 nginxconfig diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cf1ab25 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a28eb96b636ee3dcc056127f4094db70a0291e57 GIT binary patch literal 1150 zcmbu7PiqrV6vbaqL|cX0g$oO55-Q2W)EGi$lw?9%t+gSFegP4SU^k`(E8YXpZQp~bP#|cValCViJnqs_F}dh94n>L;y`++p&@80Pa&@M8Wc zZcW~lUeeqz472QM@Z(rAhDgvOTsqYciON^tXHn90s!wJS!y_ztxz>S1G=S!9F4U^! zx|i1e-X3%(ZKtkP%EB;9#=rarjdu8bZu}?}^$ZVZAK-a@&Z&z_pJD9tg4y+c^FaN~ z`?-61hWGDY;!=%?Qjy+>>uO~xC@jZ?O@54lP zd}AYZdB#lU;vm?g{qDBCYgdMcaVax|NT-4G=gwg9L%}&`u~5Lkz*(9Fgt + + + + + ~/ + + + + + + + + +
+

+ Made with + + by iiiypuk +

+
+ + + diff --git a/nginxconfig b/nginxconfig new file mode 100644 index 0000000..135c472 --- /dev/null +++ b/nginxconfig @@ -0,0 +1,28 @@ +server { + listen 80; + listen [::]:80; + + listen 443 ssl; + ssl_certificate /home/alex/_certbot/config/live/iiiypuk.me/fullchain.pem; + ssl_certificate_key /home/alex/_certbot/config/live/iiiypuk.me/privkey.pem; + + root /home/alex/Sites/iiiypuk.me; + + location /git/ { + proxy_pass http://localhost:3000/; + } + + location /donate/ { + root /home/alex/Sites/iiiypuk.me/donate/; + } + + location /torrent/ { + proxy_pass http://127.0.0.1:9091; + proxy_pass_header X-Transmission-Session-Id; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } + + server_name iiiypuk.me; +}