Archived
1
0
This commit is contained in:
Alexander Popov 2021-10-19 21:07:00 +03:00
commit 9fa9d43770
5 changed files with 217 additions and 0 deletions

24
LICENSE Normal file
View File

@ -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 <http://unlicense.org>

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

9
humans.txt Normal file
View File

@ -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

156
index.html Normal file
View File

@ -0,0 +1,156 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>~/</title>
<link type="text/plain" rel="author" href="http://iiiypuk.me/humans.txt">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet">
<style type="text/css">
body {
background-color: #181818;
color: #d1dce0;
display: flex;
align-content : center;
justify-content: center;
}
div.container {
width: 600px;
margin-bottom: 60px;
}
div.links {
line-height: 2rem;
}
div.links a {
font-size: 1.2rem;
}
a {
text-decoration: none;
}
a.button {
background-color: #334b49;
border: 2px solid #334b49;
border-radius: 8px;
color: #d1dce0;
padding: 8px;
transition: 400ms all;
margin-left: 4px;
}
a.button:hover {
background-color: rgba(0, 0, 0, 0);
/*color: #e59db5;*/
transition: 400ms all;
}
a.button img {
vertical-align: middle;
}
p {
font-family: "ABeeZee";
font-weight: 400;
}
p.title {
text-align: center;
font-weight: bold;
font-size: 1.5rem;
}
p.logo {
text-align: center;
font-size: 2rem;
font-weight: bold;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: #d1dce0;
text-align: center;
background-color: #181818;
opacity: 0.9;
}
footer img {
width: 1.2em;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="container">
<p class="logo">geek & gamer</p>
<div class="links">
<p style="text-align: center;">
<a class="button" href="//blog.iiiypuk.me/" title="Blog">
<img src="https://icongr.am/material/text-box.svg?size=24&color=ffffff">
Blog
</a>
<a class="button" href="//gemini.iiiypuk.me/" title="HTTP proxy">
<img src="https://icongr.am/material/arrow-decision.svg?size=24&color=ffffff">
Gemini HTTP Proxy
</a>
<a class="button" href="gemini://iiiypuk.me/" title="Gemini site">
<img src="https://icongr.am/material/format-page-break.svg?size=24&color=ffffff">
Gemini
</a>
</p>
<p style="text-align: center;">
<a class="button" href="//emilecok.github.io/" title="Turn 0 Around">
<img src="https://icongr.am/material/gamepad-square.svg?size=24&color=ffffff">
Turn 0 Around game studio
</a>
</p>
<p style="text-align: center;">
<a class="button" href="//iiiypuk.me/git/" title="My Gitea">
<img src="https://icongr.am/material/git.svg?size=24&color=ffffff">
My Gitea
</a>
<a class="button" href="https://iiiypuk.me/git/iiiypuk/GamingWay" title="My Gitea">
<img src="https://icongr.am/material/nintendo-game-boy.svg?size=24&color=ffffff">
My gaming way
</a>
</p>
</div>
<div class="links">
<p class="title">Social</p>
<p style="text-align: center;">
<a class="button" href="//twitter.com/_iiiypuk">
<img src="https://icongr.am/material/twitter.svg?size=24&color=ffffff">
Twitter
</a>
<a class="button" href="https://t.me/slexbc">
<img src="https://icongr.am/material/send.svg?size=24&color=ffffff">
Telegram
</a>
<a class="button" href="//github.com/iiiypuk">
<img src="https://icongr.am/material/github.svg?size=24&color=ffffff">
GitHub
</a>
<a class="button" href="//vk.com/0xi3k">
<img src="https://icongr.am/material/vk.svg?size=24&color=ffffff">
Vk
</a>
<a class="button" href="https://discord.gg/pqsu6FsHSe">
<img src="https://icongr.am/material/discord.svg?size=24&color=ffffff">
Discord
</a>
</p>
<!-- GPG Fingerprint -->
<p style="text-align: center">0CF8 4949 6B78 7E5C 9744 F319 398F C734 78D9 7286</p>
</div>
</div>
<footer>
<p>
Made with
<img src="https://icongr.am/material/coffee.svg?size=128&color=ffffff">
by iiiypuk
</p>
</footer>
</body>
</html>
<!-- ver: 0.0.6 -->

28
nginxconfig Normal file
View File

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