mirror of
https://github.com/YunoHost-Apps/radicale_ynh.git
synced 2024-09-03 20:16:14 +02:00
8 lines
202 B
Nginx Configuration File
8 lines
202 B
Nginx Configuration File
location PATHTOCHANGE {
|
|
alias ALIASTOCHANGE
|
|
if ($scheme = http) {
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
}
|
|
include uwsgi_params;
|
|
uwsgi_pass unix:///tmp/uwsgi.sock;
|
|
}
|