1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/radicale_ynh.git synced 2024-09-03 20:16:14 +02:00
radicale_ynh/conf/nginx.conf

9 lines
202 B
Nginx Configuration File
Raw Normal View History

2013-11-28 17:44:39 +01:00
location PATHTOCHANGE {
alias ALIASTOCHANGE
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
include uwsgi_params;
uwsgi_pass unix:///tmp/uwsgi.sock;
}