summaryrefslogtreecommitdiffstats
path: root/roles/lists
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-12-09 17:21:06 +0100
committerGuilhem Moulin <guilhem@fripost.org>2015-12-09 17:21:06 +0100
commit2e67b6809d3b44da2e1e6ee6a974f10a3844964f (patch)
tree5e01116da2e0108dc53fe18a2d53d3a8a45c9289 /roles/lists
parent32dbd35ec0e3e96a1a6ef569a641dc3c9e6a91f7 (diff)
ngnix: mv ssl/config conf.d/ssl
Diffstat (limited to 'roles/lists')
-rw-r--r--roles/lists/files/etc/nginx/sites-available/sympa2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/lists/files/etc/nginx/sites-available/sympa b/roles/lists/files/etc/nginx/sites-available/sympa
index 77e9dc0..2dad552 100644
--- a/roles/lists/files/etc/nginx/sites-available/sympa
+++ b/roles/lists/files/etc/nginx/sites-available/sympa
@@ -3,41 +3,41 @@ server {
listen [::]:80 ipv6only=on;
server_name lists.fripost.org;
access_log /var/log/nginx/lists.access.log;
error_log /var/log/nginx/lists.error.log info;
return 302 https://$host$request_uri;
}
server {
listen 443;
listen [::]:443 ipv6only=on;
server_name lists.fripost.org;
access_log /var/log/nginx/lists.access.log;
error_log /var/log/nginx/lists.error.log info;
- include ssl/config;
+ include conf.d/ssl;
ssl_certificate /etc/nginx/ssl/lists.fripost.org.pem;
ssl_certificate_key /etc/nginx/ssl/lists.fripost.org.key;
location = / {
return 302 /sympa$args;
}
location ^~ /static-sympa/ {
alias /var/lib/sympa/static_content/;
expires 30d;
}
location ^~ /sympa {
fastcgi_split_path_info ^(/sympa)(.*)$;
include fastcgi/params;
fastcgi_pass unix:/run/wwsympa.socket;
gzip off;
}