Compare commits

...

3 commits

Author SHA1 Message Date
b995f42fb4 fix variable
Some checks failed
CI / build (3.10) (push) Has been cancelled
CI / build (3.8) (push) Has been cancelled
CI / build (3.9) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
2024-09-16 16:40:38 +02:00
c3ebc7a11b add SECRET_KEY 2024-09-16 16:38:37 +02:00
760d2b7748 modify snappass template 2024-09-16 14:00:18 +02:00
3 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
.env
.project
*.rdb
junit*xml

View file

@ -10,7 +10,8 @@ services:
stop_signal: SIGINT
environment:
- REDIS_HOST=redis
- NO_SSL=True
- NO_SSL=false
- SECRET_KEY=${SECRET_KEY}
- VIRTUAL_HOST=share.brothertec.eu
- VIRTUAL_PORT=5000
- LETSENCRYPT_HOST=share.brothertec.eu

View file

@ -22,5 +22,13 @@
<script src="{{ config.STATIC_URL }}/jquery/jquery-3.6.0.min.js"></script>
<script src="{{ config.STATIC_URL }}/bootstrap/js/bootstrap.min.js"></script>
{% block js %}{% endblock %}
<div class="container">
<p>
<p><strong>no tracking | no logging | no advertising</strong></p>
<p>proudly presented by <a href="https://brothertec.eu/" target="_blank">brothertec.eu</a> | <a href="https://datenschutz.brothertec.eu/impressum/" target="_blank">Impressum</a> | <a href="https://datenschutz.brothertec.eu/datenschutzerkl%C3%A4rung/" target="_blank">Datenschutzhinweis</a> | <a href="https://github.com/pinterest/snappass" target="_blank">Code</a></p>
</p>
</div>
</body>
</html>