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.
 
 
 
Feufochmar 5f18b2d7eb
Update Character generator data.
2 months ago
postbot Remove Twitter support in bots. 3 months ago
scribblings Ajout des fichiers de description des modules racket 3 years ago
src Update links to my accounts elsewhere. 3 months ago
static Update Character generator data. 2 months ago
systemd Add systemd files for the postbots. 11 months ago
.gitmodules Change submodule configuration 11 months ago
README.md Update some links with the use of gitea for projects.feuforeve.fr. 11 months ago
configuration.rkt Move some values into configuration.rkt, and check if secured when retrieving the user from its cookie (ignore the cookie in http unless in dev mode). 2 years ago
daily-island-updater.rkt Merge the previous island generator with the new ideas explored so far. 3 years ago
info.rkt Ajout des fichiers de description des modules racket 3 years ago
main.rkt Add AmyTron4000 generator page. 11 months ago
mime.types Add MIME types file from Apache to correctly serve files. 3 years ago
useradd.rkt Add user management tools (useradd, userdel). 2 years ago
userdel.rkt Add user management tools (useradd, userdel). 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:

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