This repository has been archived on 2020-07-17. You can view files and clone it, but cannot push or open issues/pull-requests.
parley_mainpage_ynh/conf/nginx.conf

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