mailiverse/deploy/web/resources/nginx.conf

57 lines
1.1 KiB
Nginx Configuration File
Raw Normal View History

2013-09-01 12:19:41 -04:00
#user nobody;
worker_processes 1;
error_log ~/run.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
access_log ~/run.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
gzip on;
# HTTPS server
#
server {
listen 443;
# server_name mail.mailiverse.com;
ssl on;
ssl_certificate ~/resources/nginx-ssl.crt;
ssl_certificate_key ~/resources/nginx-ssl.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
autoindex off;
root ~/www/;
}
}
}