Я використовую Drupal 7.x. Я досяг цього, щоб він працював без чистих URL-адрес.
Досліджуючи, я зрозумів, що я повинен створити vhost для кожного drupal-сайту та включити чисті 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-адреси, завжди відображається слово Nginx (localhost).
Який правильний спосіб увімкнути чисті URL-адреси?
Це моя конфігурація в / etc / nginx / sites-available / default.
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? drupal.org/node/976392
—
geerlingguy
@geerlingguy Так. Цю частину коду я додав до мого файлу за замовчуванням у доступному для сайту місці, і коли я заходжу на свій сайт, я отримую помилку 500. Або мені потрібно створити vhost?
—
Едуардо
Погляньте на github.com/perusio/drupal-with-nginx . У ньому є всі параметри конфігурації, які, ймовірно, знадобляться для запуску Drupal на сервері Nginx.
—
jamestsymp