Changes between Version 2 and Version 3 of Ticket #814, comment 11


Ignore:
Timestamp:
07/03/16 21:25:53 (8 years ago)
Author:
david.sardari@…

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #814, comment 11

    v2 v3  
    77TLS SNI support enabled
    88configure arguments: --prefix=/usr --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error_log --pid-path=/run/nginx.pid --lock-path=/run/lock/nginx.lock --with-cc-opt=-I/usr/include --with-ld-opt=-L/usr/lib --http-log-path=/var/log/nginx/access_log --http-client-body-temp-path=/var/lib/nginx/tmp/client --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --with-http_v2_module --with-ipv6 --with-pcre --without-http_autoindex_module --without-http_browser_module --without-http_charset_module --without-http_empty_gif_module --without-http_fastcgi_module --without-http_geo_module --without-http_gzip_module --without-http_limit_req_module --without-http_limit_conn_module --without-http_map_module --without-http_memcached_module --without-http_scgi_module --without-http_ssi_module --without-http_split_clients_module --without-http_upstream_ip_hash_module --without-http_userid_module --without-http_uwsgi_module --with-http_realip_module --add-module=external_module/headers-more-nginx-module-0.30 --with-http_ssl_module --without-stream_upstream_hash_module --without-stream_upstream_least_conn_module --without-stream_upstream_zone_module --without-stream_upstream_hash_module --without-stream_upstream_least_conn_module --without-stream_upstream_zone_module --without-stream_upstream_hash_module --without-stream_upstream_least_conn_module --without-stream_upstream_zone_module --without-mail_imap_module --without-mail_pop3_module --without-mail_smtp_module --user='nginx --group=nginx'
     9}}}
     10
     11{{{
     12netcup88 ~ # cat /etc/nginx/nginx.conf
     13user nginx nginx;
     14worker_processes auto;
     15
     16events {
     17        worker_connections 1024;
     18        use epoll;
     19}
     20
     21http {
     22        include /etc/nginx/mime.types;
     23        default_type application/octet-stream;
     24
     25        include /etc/nginx/conf.d/http_ssl.conf;
     26        include /etc/nginx/conf.d/http_harden.conf;
     27        include /etc/nginx/pages/*.conf;
     28
     29        server {
     30                listen 80;
     31                listen [::]:80;
     32                listen 443 ssl http2;
     33                listen [::]:443 ssl http2;
     34
     35                return 444;
     36        }
     37}
    938}}}
    1039