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
Maniack Crudelis 11e6a7dfe1 Upgrade to v3
2022-11-22 13:40:41 +01:00

54 lines
2 KiB
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
# location __PATH__/ {
# try_files $uri @radicale;
# }
#
# location @radicale {
# uwsgi_pass unix:///run/uwsgi/app/radicale/socket;
# include uwsgi_params;
# uwsgi_param QUERY_STRING $query_string;
# uwsgi_param REQUEST_METHOD $request_method;
# uwsgi_param CONTENT_TYPE $content_type;
# uwsgi_param CONTENT_LENGTH $content_length;
#
# uwsgi_param REQUEST_URI $request_uri;
# uwsgi_param PATH_INFO $document_uri;
# uwsgi_param DOCUMENT_ROOT $document_root;
# uwsgi_param SERVER_PROTOCOL $server_protocol;
# uwsgi_param HTTPS $https if_not_empty;
#
# uwsgi_param REMOTE_ADDR $remote_addr;
# uwsgi_param REMOTE_PORT $remote_port;
# uwsgi_param SERVER_PORT $server_port;
# uwsgi_param SERVER_NAME $server_name;
# }
location __PATH__/ {
proxy_pass http://localhost:__PORT__/;
proxy_set_header X-Script-Name __PATH__;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Remote-User $remote_user;
# proxy_pass_header Authorization;
}
#INFCLOUD#location __PATH__/infcloud {
#INFCLOUD# alias __FINALPATH__/infcloud;
#INFCLOUD# if ($scheme = http) {
#INFCLOUD# rewrite ^ https://$server_name$request_uri? permanent;
#INFCLOUD# }
#INFCLOUD# index index.html index.php ;
#INFCLOUD# try_files $uri $uri/ index.php;
#INFCLOUD# location ~ [^/]\.php(/|$) {
#INFCLOUD# fastcgi_split_path_info ^(.+?\.php)(/.*)$;
#INFCLOUD# fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
#INFCLOUD# fastcgi_index index.php;
#INFCLOUD# include fastcgi_params;
#INFCLOUD# fastcgi_param REMOTE_USER $remote_user;
#INFCLOUD# fastcgi_param PATH_INFO $fastcgi_path_info;
#INFCLOUD# fastcgi_param SCRIPT_FILENAME $request_filename;
#INFCLOUD# }
#INFCLOUD#
#INFCLOUD# # Include SSOWAT user panel.
#INFCLOUD# include conf.d/yunohost_panel.conf.inc;
#INFCLOUD#}