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
This commit is contained in:
19
conf/nginx.conf
Normal file
19
conf/nginx.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user