mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 16:19:13 +02:00
Initial version of nginx parser roundtrip test
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name mail.elegbara.net;
|
||||
|
||||
location / {
|
||||
rewrite ^ https://mail.elegbara.net/webmail permanent;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME /usr/share/apache2$fastcgi_script_name;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443;
|
||||
server_name mail.elegbara.net;
|
||||
|
||||
location / {
|
||||
root /usr/share/apache2/;
|
||||
index index.php index.html;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
root /usr/share/apache2/;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME /usr/share/apache2$fastcgi_script_name;
|
||||
fastcgi_param SERVER_NAME $http_host;
|
||||
fastcgi_ignore_client_abort on;
|
||||
}
|
||||
|
||||
ssl on;
|
||||
ssl_certificate /etc/ssl/certs/iRedMail_CA.pem;
|
||||
ssl_certificate_key /etc/ssl/private/iRedMail.key;
|
||||
ssl_session_timeout 5m;
|
||||
ssl_protocols SSLv2 SSLv3 TLSv1;
|
||||
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
|
||||
ssl_prefer_server_ciphers on;
|
||||
}
|
||||
Reference in New Issue
Block a user