w tej chwili używam stronę internetową w nginx/1.6.3 na centOS7Nginx SSL/Subdomeny/IP
Wszystko działa gładkie, z wyjątkiem niektórych przekierowań.
To właśnie mój plik .conf wygląda następująco:
server {
listen 443 ssl spdy default deferred;
server_name .example.com;
... more configs
}
server {
listen 80;
server_name .example.com;
return 301 https://example.com$request_uri;
}
Co chciałbym osiągnąć są następujące scenariusze:
user visits in browser | this should happen
------------------------------------|-------------------------------------
https://example.com$request_uri | Just deliver content
https://*.example.com$request_uri | 301 https://example.com$request_uri
https://123.123.123.123$request_uri | 301 https://example.com$request_uri
http://example.com$request_uri | 301 https://example.com$request_uri
http://*.example.com$request_uri | 301 https://example.com$request_uri
http://123.123.123.123$request_uri | 301 https://example.com$request_uri