mirror of
https://github.com/tildeclub/fosspay.git
synced 2026-01-24 19:20:18 +00:00
Source incoming :)
This commit is contained in:
15
contrib/fosspay.service
Normal file
15
contrib/fosspay.service
Normal file
@@ -0,0 +1,15 @@
|
||||
[Unit]
|
||||
Description=fosspay website
|
||||
Wants=network.target
|
||||
Wants=postgresql.target
|
||||
Before=network.target
|
||||
Before=postgresql.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
WorkingDirectory=/home/sircmpwn/fosspay/
|
||||
ExecStart=/usr/local/bin/gunicorn app:app -b 127.0.0.1:5000
|
||||
ExecStop=/usr/bin/pkill gunicorn
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
10
contrib/fr/emails/declined
Normal file
10
contrib/fr/emails/declined
Normal file
@@ -0,0 +1,10 @@
|
||||
Une tentative de prélèvement de votre carte bancaire d'un montant de {{amount}}€ vient d'échouer.
|
||||
|
||||
Le don récurrent a donc été annulé. Si vous voulez encore nous donner, vous pouvez le faire à nouveau sur notre page dédiée :
|
||||
{{root}}
|
||||
|
||||
Merci !
|
||||
|
||||
--
|
||||
{{your_name}}
|
||||
|
||||
15
contrib/fr/emails/reset-password
Normal file
15
contrib/fr/emails/reset-password
Normal file
@@ -0,0 +1,15 @@
|
||||
Bonjour,
|
||||
|
||||
Quelqu'un (probablement vous), a tenté de réinitialiser votre mot de passe.
|
||||
|
||||
Pour valider cette demande, cliquez sur ce lien :
|
||||
{{root}}/password-reset/{{user.password_reset}}
|
||||
|
||||
Il expirera après 24 heures.
|
||||
Si vous n'avez pas demandé à changer votre mot de passe, ignorez cet e-mail.
|
||||
|
||||
Si vous avez des questions, envoyez-nous un e-mail : {{your_email}}
|
||||
|
||||
--
|
||||
{{your_name}}
|
||||
|
||||
20
contrib/fr/emails/thank-you
Normal file
20
contrib/fr/emails/thank-you
Normal file
@@ -0,0 +1,20 @@
|
||||
Merci pour votre don !
|
||||
|
||||
Votre reçu :
|
||||
|
||||
{{#monthly}}
|
||||
Don mensuel {{amount}}€
|
||||
{{/monthly}}
|
||||
{{^monthly}}
|
||||
Don unique {{amount}}€
|
||||
{{/monthly}}
|
||||
|
||||
Vous pouvez visualiser et gérer vos dons ici :
|
||||
{{root}}/panel
|
||||
|
||||
Merci encore !
|
||||
Si vous avez des questions, vous pouvez nous contacter à l'adresse : {{your_email}}.
|
||||
|
||||
--
|
||||
{{your_name}}
|
||||
|
||||
24
contrib/nginx.conf
Normal file
24
contrib/nginx.conf
Normal file
@@ -0,0 +1,24 @@
|
||||
# This is my nginx configuration
|
||||
# Yours will look different. This is just an example.
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name drewdevault.com;
|
||||
return 301 https://$server_name$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl spdy;
|
||||
listen [::]:443 ssl spdy default_server ipv6only=on;
|
||||
server_name drewdevault.com;
|
||||
|
||||
location / {
|
||||
proxy_pass http://sircmpwn.github.io;
|
||||
proxy_redirect http:// https://;
|
||||
}
|
||||
|
||||
location /donate/ {
|
||||
proxy_pass http://127.0.0.1:5000/;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user