Nginx के साथ SSL पर www को www पर रीडायरेक्ट करें


25

Https://www.example.com पर https://example.com को पुनः निर्देशित करने का प्रयास करते समय मुझे एक त्रुटि हो रही है ।

जब मैं https://example.com पर जाता हूं , तो यह पृष्ठ को पुनर्निर्देशित नहीं करता है और पृष्ठ / 200 की स्थिति देता है।

मैं यह नहीं चाहता, मैं चाहता हूं कि यह https://www.example.com पर पुनर्निर्देशित हो ।

जब मैं http://example.com पर जाता हूं , तो यह https://www.example.com पर रीडायरेक्ट हो जाता है

क्या कोई मुझे बता सकता है कि मैं कहाँ गलत हो रहा हूँ?

यह मेरी डिफ़ॉल्ट और डिफ़ॉल्ट- ssl विन्यास फाइल है:

default.conf

server {
    listen 80;
    server_name example.com;
    return 301 https://www.example.com$request_uri;
}

डिफ़ॉल्ट-ssl.conf

upstream app_server_ssl {
    server unix:/tmp/unicorn.sock fail_timeout=0;
}

server {
    server_name example.com;
    return 301 https://www.example.com$request_uri
}
server {
    server_name www.example.com;

    listen 443;
    root /home/app/myproject/current/public;
    index index.html index.htm;

    error_log /srv/www/example.com/logs/error.log info;
    access_log /srv/www/example.com/logs/access.log combined;

    ssl on;
    ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
    ssl_certificate /srv/www/example.com/keys/ssl.crt;
    ssl_certificate_key /srv/www/example.com/keys/www.example.com.key;
    ssl_ciphers AES128-SHA:RC4-MD5:ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:RSA+3DES:!ADH:!AECDH:!MD5:AES128-SHA;
    ssl_prefer_server_ciphers on;

    client_max_body_size 20M;


    try_files $uri/index.html $uri.html $uri @app;


    # CVE-2013-2028 http://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html
    if ($http_transfer_encoding ~* chunked) {
            return 444;
        }

    location @app {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://app_server_ssl;
    }

    error_page 500 502 503 504 /500.html;

    location = /500.html {
        root /home/app/example/current/public;
    }
}

1
2 conf फाइल बनाने की बात क्या है?
संदीप सूबेदार

चिंताओं का पृथक्करण, गैर एसएसएल विन्यास इतना छोटा था कि इसे एसएसएल केवल विन्यास से अलग करना सबसे अच्छा लग रहा था।
थॉमस वी।

जवाबों:


34

आप listenफ़ाइल में निर्देश याद कर रहे हैं default-ssl.conflisten 443;इस निर्देश में जोड़ें

server {
    server_name example.com;
    return 301 https://www.example.com$request_uri;
}

डिफ़ॉल्ट रूप से, यदि आप इस निर्देश को छोड़ देते हैं, तो nginx मान लेता है कि आप पोर्ट 80 पर सुनना चाहते हैं। इस डिफ़ॉल्ट व्यवहार का दस्तावेज़ीकरण


संपादित करें: @TeroKilkanen की टिप्पणी के लिए धन्यवाद।

यहां आपके डिफ़ॉल्ट- ssl.conf के लिए पूर्ण कॉन्फ़िगरेशन

server {
    listen 443 ssl;
    server_name example.com;

    ssl_certificate /srv/www/example.com/keys/ssl.crt;
    ssl_certificate_key /srv/www/example.com/keys/www.example.com.key;
    return 301 https://www.example.com$request_uri;
}

सिडेनोट : आप नगीने के प्रलेखन से सिफारिश के रूप में ssl on;निर्देश को बदल सकते हैं ।listen 443 ssl;


4
आपको इस ब्लॉक में स्थापित करने ssl_certificateऔर ssl_certificate_keyनिर्देशन करने की भी आवश्यकता है , और इसका उपयोग करें listen 443 ssl;ताकि यह एक एसएसएल vhost हो।
तेरो किलकेनेन

कृपया करंट की सामग्री पोस्ट करें default-ssl.conf। हो सकता है कि कुछ टाइपो या रीऑर्डर समस्या का कारण बने।
masegaloeh

यह शर्मनाक है: \ n अपराधी / etc / nginx / साइट्स-सक्षम, /etc/nginx/sites-enabled/default-ssl.backup में डुप्लिकेट nginx कॉन्फ़िगरेशन डिफ़ॉल्ट-ssl में किसी भी रीडायरेक्ट के साथ रोक रहा था। मूर्खतापूर्ण त्रुटि।
थॉमस वी।

इसलिए मुझे 2 सिरे जारी करने थे: www-domain के लिए और गैर-www एक के लिए
vladkras

इसे पोर्ट 5007: example.com:5007 से example.com:5007
CP3O

5

बस अगर एक बयान में फेंक और आप अपने रास्ते पर होना चाहिए। मैंने curl.exe -I में परिणामों की जाँच की और https://www.example.com के अलावा सभी मामलों को 301 के रूप में माना जाता है। SSL मुश्किल है क्योंकि इससे पहले कि आप 301 URL पुनर्निर्देशन प्राप्त करते हैं, इसकी जाँच हो जाती है। इसलिए, आपको प्रमाणपत्र त्रुटियाँ मिलती हैं।

व्यक्तिगत रूप से, मुझे www को डोमेन से निकालना पसंद है लेकिन मैंने आपके प्रश्न का उत्तर देने के लिए अपना कोड नीचे लिखा है।

server {
listen 443 ssl;
listen [::]:443 ssl; # IPV6

server_name example.com www.example.com; # List all variations here

# If the domain is https://example.com, lets fix it!

if ($host = 'example.com') {
  return 301 https://www.example.com$request_uri;
}

# If the domain is https://www.example.com, it's OK! No changes necessary!

... # SSL .pem stuff
...
}

server {
listen 80;
listen [::]:80;

# If the domain is http://example.com or https://www.example.com, let's change it to https!

server_name example.com www.example.com;
return 310 https://www.example.com$request_uri;
}

3

जिस तरह से मैं ssl सर्वर ब्लॉक के अंदर एक if स्टेटमेंट का उपयोग करता हूं, वह www के https पर रीडायरेक्ट करता है

ssl_certificate /srv/www/example.com/keys/ssl.crt;
ssl_certificate_key /srv/www/example.com/keys/www.example.com.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers AES128-SHA:RC4-MD5:ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:RSA+3DES:!ADH:!AECDH:!MD5:AES128-SHA;
ssl_prefer_server_ciphers on;
client_max_body_size 20M;

upstream app_server_ssl {
    server unix:/tmp/unicorn.sock fail_timeout=0;
}

server {
    server_name example.com;
    return 301 https://www.example.com$request_uri
}

server {
    listen 443 default_server ssl;
    server_name www.example.com;

    # redirect https://example.com to https://www.example.com
    # mainly for SEO purposes etc
    #we will use a variable to do that
    set $redirect_var 0;

    if ($host = 'example.com') {
      set $redirect_var 1;
    }
    if ($host = 'www.example.com') {
      set $redirect_var 1;
    }

    if ($redirect_var = 1) {
      return 301 https://www.example.com$request_uri;
    } 

    try_files $uri/index.html $uri.html $uri @app;

    # CVE-2013-2028 http://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html
    if ($http_transfer_encoding ~* chunked) {
            return 444;
        }

    location @app {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://app_server_ssl;
    }

    error_page 500 502 503 504 /500.html;

    location = /500.html {
        root /home/app/example/current/public;
    }
}

बेशक, जब भी आप एक nginx config फाइल में एक if स्टेटमेंट का उपयोग करना चाहते हैं; आपको पढ़ना चाहिए: https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/


शर्त if ($host = 'www.example.com')जरूरी नहीं है।
कार्ल।

2

इसका 2018 अभी और मुझे लगा कि इस मामले में नए सिरे से एक शॉट दिया जाएगा जब कोई एक सरल समाधान की तलाश में होगा।

अपेक्षाकृत नए-हास्य के रूप में मेरा काम चीजों को यथासंभव सरल बनाना है। मूल रूप से आप http://example.com और https://example.com दोनों को https : // www .example.com पर पुनर्निर्देशित करना चाहते हैं । और यह कि आप केवल http://example.com को पुनर्निर्देशित करने में सफल होंगे

यह केवल दो सर्वर ब्लॉक की आवश्यकता के लिए एक सीधा ऑपरेशन है (मैं इसे एक ही फाइल में संक्षेप में प्रदर्शित करूंगा)

# 1. Server block to redirect all non-www and/or non-https to https://www
server {
    # listen to the standard http port 80
    listen 80; 

    # Now, since you want to route https://example.com to http://www.example.com....
    # you need to get this block to listen on https port 443 as well
    # alternative to defining 'ssl on' is to put it with listen 443
    listen 443 ssl; 

    # define server_name
    server_name example.com *.example.com; 

    # DO NOT (!) forget your ssl certificate and key
    ssl_certificate PATH_TO_YOUR_CRT_FILE;
    ssl_certificate_key PATH_TO_YOUR_KEY_FILE; 

    # permanent redirect
    return 301 https://www.example.com$request_uri;  
    # hard coded example.com for legibility 
}
# end of server block 1. nearly there....

# 2. Server block for the www (primary) domain
# note that this is the block that will ultimately deliver content
server {
    # define your server name
    server_name www.example.com; 

    # this block only cares about https port 443
    listen 443 ssl;

    # DO NOT (!) forget your ssl certificate and key
    ssl_certificate PATH_TO_YOUR_CRT_FILE;
    ssl_certificate_key PATH_TO_YOUR_KEY_FILE; 

    # define your logging .. access , error , and the usual 

    # and of course define your config that actually points to your service
    # i.e. location / { include proxy_params; proxy_pass PATH_TO_SOME_SOCKET; }
}
# End of block 2.
# voilà! 

अब http://example.com और https://example.com दोनों को https://www.example.com पर पुनर्निर्देशित करना चाहिए । मूल रूप से यह सेटअप सब कुछ गैर-www और / या गैर-https से https: // www पर पुनर्निर्देशित करता है


-1

सभी अनुरोधों को पुनर्निर्देशित करना https://www.example

अपने एसएसएल पोर्ट (आमतौर पर 443) के साथ-साथ डिफ़ॉल्ट http पोर्ट 80 पर पुनर्निर्देशित और प्राथमिक डोमेन के लिए एक सर्वर ब्लॉक बनाएं

# non-www to ssl www redirect
server {
  listen 80; 
  listen 443 ssl;
  server_name example.com;
  return 301 https://www.example.com$request_uri;
  # ... ssl certs
}

# ssl setup for www (primary) domain
server {
  listen 80;
  listen 443 ssl;
  server_name www.example.com;
  if ($scheme = http) {
    return 301 https://www.example.com$request_uri;
  }
  # ... the rest of your config + ssl certs
}

बचाओ और साथ चलो sudo nginx -s reload

यह पुनर्निर्देशित करेगा

http://example      301 -> https://www.example
https://example     301 -> https://www.example
http://www.example  301 -> https://www.example
https://www.example 200

आप एक ;दूसरे खंड में यदि खंड में याद कर रहे हैं । यह होना चाहिएreturn 301 https://www.example.com$request_uri;
लुकास ओपरमैन

1
हालाँकि, यह भी काम करेगा? यह कर सकते हैं के लिए सुनने httpपर 443?
लुकास ओपरमैन

आप सही कह रहे हैं, मुझे 80 की याद आ रही है, ive ने इसे जोड़ा।
lfender6445
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.