Erm
This commit is contained in:
parent
71cc031d44
commit
1825610596
5 changed files with 34 additions and 4 deletions
|
@ -20,12 +20,15 @@
|
|||
"ServerCountryLocation": "Chile",
|
||||
"SiteMetaInfo": "ayaya.beauty es un subidor de multimedia temporal, puedes subir archivos de hasta 512MB y se borraran automaticamente en 7 Dias.",
|
||||
"ToolsDesc": "Las siguentes herramientas necesitaran ser editadas para funcionar en este clon de uguu.se, usualmente editando la URL funciona. (En este caso, ayaya.beauty)",
|
||||
"donationBanner": true,
|
||||
"paypalUrl": "",
|
||||
"flowUrl": "https://www.flow.cl/app/web/pagarBtnPago.php?token=2sjix0x",
|
||||
"bitcoinAddress": "bc1q66mpdxnu340dnl0qlznq783zzqawskw48kestd",
|
||||
"moneroAddress": "482FQXqpTvUDPgK4apRkMbB5Qom9ppCuce6uZ3ekCriieqLcZ1D7Ve11wLp9HGquL9b5vxPBENLv8hT2ab3JhDFAKizawr3",
|
||||
"flattrUrl": "",
|
||||
"kofiUrl": "https://ko-fi.com/fijxu",
|
||||
"donationBanner": true,
|
||||
"malwareBanner": true,
|
||||
"torBanner": true,
|
||||
"DB_MODE": "sqlite",
|
||||
"DB_PATH": "/var/www/db/uguuDB.sq3",
|
||||
"DB_USER": "NULL",
|
||||
|
@ -37,7 +40,7 @@
|
|||
"RATE_LIMIT": true,
|
||||
"RATE_LIMIT_TIMEOUT": 60,
|
||||
"RATE_LIMIT_FILES": 10,
|
||||
"FILES_ROOT": "/var/www/files2/",
|
||||
"FILES_ROOT": "/var/www/files/",
|
||||
"FILES_RETRIES": 15,
|
||||
"NAME_LENGTH": 4,
|
||||
"ID_CHARSET": "abcdefghijklmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ",
|
||||
|
|
|
@ -187,6 +187,12 @@
|
|||
.icon-bitcoin {
|
||||
background-image: url('img/bitcoin.png');
|
||||
}
|
||||
.icon-monero {
|
||||
background-image: url('img/monero.png');
|
||||
}
|
||||
.icon-flow {
|
||||
background-image: url('img/flow.png');
|
||||
}
|
||||
.icon-flattr {
|
||||
background-image: url('img/flattr.png');
|
||||
}
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
<%- include('./src/templates/partials/upload_form.ejs'); -%>
|
||||
</div>
|
||||
|
||||
<% if (torBanner) { %>
|
||||
<%- include('./src/templates/partials/tor_warning.ejs'); -%>
|
||||
<% } %>
|
||||
|
||||
<% if (malwareBanner) { %>
|
||||
<%- include('./src/templates/partials/malware_banner.ejs'); -%>
|
||||
<% } %>
|
||||
|
|
|
@ -12,6 +12,13 @@
|
|||
</a>
|
||||
<% } %>
|
||||
|
||||
<% if (moneroAddress) { %>
|
||||
<a class="donate-btn donate-monero" href="bitcoin:<%= moneroAddress %>?label=<%= siteName %>&message=Hosting%20Costs" target="_BLANK">
|
||||
<span class="icon icon-monero"></span>
|
||||
Monero
|
||||
</a>
|
||||
<% } %>
|
||||
|
||||
<% if (paypalUrl) { %>
|
||||
<a class="donate-btn donate-paypal" href="<%= paypalUrl %>" target="_BLANK">
|
||||
<span class="icon icon-paypal"></span>
|
||||
|
@ -19,6 +26,13 @@
|
|||
</a>
|
||||
<% } %>
|
||||
|
||||
<% if (flowUrl) { %>
|
||||
<a class="donate-btn donate-flow" href="<%= flowUrl %>" target="_BLANK">
|
||||
<span class="icon icon-flow"></span>
|
||||
Flow (Chile)
|
||||
</a>
|
||||
<% } %>
|
||||
|
||||
<% if (flattrUrl) { %>
|
||||
<a class="donate-btn donate-flattr" href="<%= flattrUrl %>" target="_BLANK">
|
||||
<span class="icon icon-flattr"></span>
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://zzls.xyz">zzls</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/"><%= siteName %></a>
|
||||
</li>
|
||||
|
@ -7,10 +10,10 @@
|
|||
<a href="tools.html">Herramientas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="img/sharex.png">ShareX <img src="img/sharexlogo.png" style="height:1.5ex;"></a>
|
||||
<a href="img/ayaya.beauty.sxcu" style="color: chartreuse;"><b>ShareX</b> <img src="img/sharexlogo.png" style="height:1.5ex;"></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="img/chatterino.png" style="color: chartreuse;"><b>Chatterino</b> <img src="img/chatterinoicon.png" style="height:1.5ex;"></a>
|
||||
<a href="img/chatterino.html" style="color: chartreuse;"><b>Chatterino</b> <img src="img/chatterinoicon.png" style="height:1.5ex;"></a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://git.zzls.xyz/Fijxu/Uguu">Git</a>
|
||||
|
|
Reference in a new issue