feuforeve.v4/README.md

914 B

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