mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-18 23:15:03 -05:00
30 lines
758 B
Nginx Configuration File
30 lines
758 B
Nginx Configuration File
server {
|
|
listen 443;
|
|
# server_name mail.mailiverse.com;
|
|
|
|
ssl on;
|
|
ssl_certificate nginx-ssl.crt;
|
|
ssl_certificate_key nginx-ssl.key;
|
|
|
|
ssl_session_timeout 5m;
|
|
|
|
ssl_protocols SSLv2 SSLv3 TLSv1;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
location /Mailiverse/ {
|
|
proxy_pass http://127.0.0.1:8080; # my existing apache instance
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection upgrade;
|
|
}
|
|
|
|
location / {
|
|
autoindex off;
|
|
root /var/local/www/;
|
|
}
|
|
}
|
|
|