Changes of Revision 15
[-] [+] | Added | ssl.conf |
@@ -0,0 +1,24 @@ +# +# HTTPS server configuration +# + +#server { +# listen 443; +# server_name _; + +# ssl on; +# ssl_certificate cert.pem; +# ssl_certificate_key cert.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; + +# location / { +# root html; +# index index.html index.htm; +# } +#} + | ||
[-] [+] | Added | virtual.conf ^ |
@@ -0,0 +1,15 @@ +# +# A virtual host using mix of IP-, name-, and port-based configuration +# + +#server { +# listen 8000; +# listen somename:8080; +# server_name somename alias another.alias; + +# location / { +# root html; +# index index.html index.htm; +# } +#} + |