Support of SOAP server

This commit is contained in:
Yohann D'ANELLO
2020-10-08 14:32:27 +02:00
parent f248a5c7cf
commit c41e0eb961
6 changed files with 195 additions and 1 deletions

View File

@ -11,6 +11,13 @@ server {
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location /sympasoap {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/run/sympa/sympasoap.socket;
fastcgi_split_path_info ^(/sympasoap)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location /static-sympa {
alias /usr/share/sympa/static_content;
}