मैं Nginx के साथ स्वच्छ URL कैसे सक्षम करूं?


9

मैं Drupal का उपयोग कर रहा हूँ 7.x. मैंने इसे स्वच्छ URL के बिना काम करने के लिए हासिल किया है।

जांच करते हुए, मैं समझ गया हूं कि मुझे प्रत्येक ड्रुपल साइट के लिए एक vhost बनाना चाहिए और निम्नलिखित कोड के साथ स्वच्छ URL को सक्षम करना चाहिए।

if (-e $ REQUEST_FILENAME) {
     rewrite ^ / (. *) $ / index.php? q = $ 1 last;
}

वैकल्पिक रूप से, मैं इस कोड का उपयोग कर सकता हूं।

location / {
         [... ]
         error_page 404 = @ drupal;
         [... ]
}

location @ drupal {
         rewrite ^ (. *) $ / index.php? q = $ 1 last;
}

हालाँकि, मैंने यह भी देखा है कि एक vhost बनाए बिना स्वच्छ URL (जैसे Apache) को सक्षम किया जा सकता है। मैंने अपने सेटअप में दोनों लाइनों पर कोशिश की लेकिन मुझे इसका परिणाम नहीं मिला। जब मैं स्वच्छ URL को सक्षम करता हूं तो यह हमेशा निगंक्स (द लोकलहोस्ट) शब्द को प्रदर्शित करता है।

स्वच्छ URL को सक्षम करने का सही तरीका क्या है?

यह / etc / nginx / साइट्स-उपलब्ध / डिफ़ॉल्ट में मेरा कॉन्फ़िगरेशन है।

server {
        listen   80; ## listen for ipv4; this line is default and implied
        listen   [::]:80 default ipv6only=on; ## listen for ipv6

        root /usr/share/nginx/www;
        index index.php index.html index.htm;

        # Make site accessible from http://localhost/
        server_name localhost;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }

        location /doc/ {
                alias /usr/share/doc/;
                autoindex on;
                allow 127.0.0.1;
                deny all;
        }

        location /images {
                root /usr/share;
                autoindex off;
        }
        # Only for nginx-naxsi : process denied requests
        #location /RequestDenied {
                # For example, return an error code
                #return 418;
        #}

        #error_page 404 /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/www;
        }

        #Pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                try_files $uri =404;
                #fastcgi_split_path_info ^(.+\.php)(/.+)$;
        # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

                # With php5-cgi alone:
                #fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                fastcgi_pass unix:/tmp/php5-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}

मैंने अपने सर्वर पर कोई vhost नहीं बनाया है; न ही मुझे पता है कि कैसे।


1
क्या आपने ड्रुपल डॉक्स से निम्नलिखित को देखा / आज़माया है? drupal.org/node/976392
geerlingguy

@geerlingguy हां। कोड का यह हिस्सा मैंने साइट-उपलब्ध में अपनी डिफ़ॉल्ट फ़ाइल में जोड़ा और, जब मैं अपनी साइट में प्रवेश करता हूं तो मुझे त्रुटि 500 ​​मिलती है। या मुझे एक vhost बनाने की आवश्यकता है?
एडुआर्डो

1
Github.com/perusio/drupal-with-nginx पर एक नज़र डालें । इसमें सभी कॉन्फ़िगरेशन विकल्प हैं जिनकी आपको ड्रगप को नगनेक्स सर्वर पर चलाने की आवश्यकता है।
जैमस्टीमप

जवाबों:


11

मेरे पास अगला काम सफलतापूर्वक है:

  location / {
    index index.php;
    # This is cool because no php is touched for static content
    try_files $uri $uri/ @rewrite;
    expires max;
  }

  location @rewrite {
    # Some modules enforce no slash (/) at the end of the URL
    # Else this rewrite block wouldn't be needed (GlobalRedirect)
    rewrite ^/(.*)$ /index.php?q=$1;
  }

  location ~ \.php$ {
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME /srv/www/www.example.com/public_html$fastcgi_script_name;
    fastcgi_intercept_errors on;
    fastcgi_pass unix:/var/run/php-fpm.sock; # fastcgi_pass unix:/tmp/php5-fpm.sock;
 }

मैंने जोड़ा @rewriteऔर location @rewrite{}अपनी फ़ाइल में /etc/nginx/sites-available/defaultऔर nginx को पुनः आरंभ किया, लेकिन मेरे लिए काम नहीं करता है। जब मैं क्लीन url सक्षम करता हूं, तो लोकलहोस्ट प्रदर्शित करें।
एडुआर्डो

2Eduardo: तो आपका मतलब है कि site.com/index.php काम कर रहा है और आपके लिए फ्रंट पेज खोल रहा है?
निकित

हाँ। मैं फ्रंट पेज देख सकता हूं .. लेकिन कोई अन्य पेज नहीं
एडुआर्डो

हम्म, क्या आप फिर से अपना कोड पेस्ट कर सकते हैं?
निकित

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