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
20 lines
298 B
Nginx Configuration File
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;
|
|
}
|
|
|