summaryrefslogtreecommitdiff
path: root/net-mail/sympa/files/sympa-nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/sympa/files/sympa-nginx.conf')
-rw-r--r--net-mail/sympa/files/sympa-nginx.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/net-mail/sympa/files/sympa-nginx.conf b/net-mail/sympa/files/sympa-nginx.conf
new file mode 100644
index 0000000..9b8e1ab
--- /dev/null
+++ b/net-mail/sympa/files/sympa-nginx.conf
@@ -0,0 +1,9 @@
+location /sympa {
+ fastcgi_split_path_info ^(/sympa)(.*);
+ fastcgi_param PATH_INFO $fastcgi_path_info;
+ fastcgi_pass unix:/var/run/sympa.sock;
+ include fastcgi_params;
+}
+location /static-sympa {
+ alias /var/spool/sympa/static_content;
+}