Code of the feuforeve.fr website.
http://feuforeve.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 months ago | |
---|---|---|
postbot | 3 months ago | |
scribblings | 3 years ago | |
src | 3 months ago | |
static | 2 months ago | |
systemd | 11 months ago | |
.gitmodules | 11 months ago | |
README.md | 11 months ago | |
configuration.rkt | 2 years ago | |
daily-island-updater.rkt | 3 years ago | |
info.rkt | 3 years ago | |
main.rkt | 11 months ago | |
mime.types | 3 years ago | |
useradd.rkt | 2 years ago | |
userdel.rkt | 2 years ago |
README.md
feuforeve.v4
The code behind the website http://feuforeve.fr and some related tools and scripts. Main repository: https://projects.feuforeve.fr/Feufochmar/feuforeve.v4.git
Dependencies
This website is written in Racket.
Licence
Licence of the files depends on their locations. Unless noted otherwise:
- all files under the
src
directory are licenced under the GNU General Public License version 2 or any later version (GPLv2+). - all files under the
static
directory are under the Creative Commons Attribution-ShareAlike 4.0.
Proxy
When behind a proxy, the proxy must pass the Host header, and set the X-Scheme header. Exemple with nginx :
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Scheme $scheme;
proxy_pass http://localhost:8080;
}