commit 9fa9d437703db6808473f96b3827787827571cd2 Author: Alexander Popov Date: Tue Oct 19 21:07:00 2021 +0300 init 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 0000000..a28eb96 Binary files /dev/null and b/favicon.ico differ diff --git a/humans.txt b/humans.txt new file mode 100644 index 0000000..1b48b83 --- /dev/null +++ b/humans.txt @@ -0,0 +1,9 @@ +/* SITE */ +Last Updated: Thu Jul 21 01:00:00 AM MSK 2021 +Components: Null + +/* TEAM */ +Chef: Alexander Popov +Contact: iiiypuk [at] iiiypuk.me +Twitter: @_iiiypuk +From: Russia diff --git a/index.html b/index.html new file mode 100644 index 0000000..bdd077d --- /dev/null +++ b/index.html @@ -0,0 +1,156 @@ + + + + + + ~/ + + + + + + + + +
+

+ 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; +}