This repository has been archived on 2020-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
ilja d4e96a4c0b Initial commit
The website is done in English.
There are some placeholder things for nl and fr as well, but the language header on the en page is commented out
There are no links in the README.md to the actual repo, only mentions to it

I wanted everything set up and done before changing those things
2020-02-28 08:15:58 +01:00

20 lines
298 B
Nginx Configuration File

location PATHTOCHANGE {
return 302 PATHTOCHANGE/en;
}
location PATHTOCHANGE/en {
alias ALIASTOCHANGE;
index index_en.html;
}
location PATHTOCHANGE/nl {
alias ALIASTOCHANGE;
index index_nl.html;
}
location PATHTOCHANGE/fr {
alias ALIASTOCHANGE;
index index_fr.html;
}