Eğer Nginx kullanarak konum beri Aslında, büyük şekil zaten konum ve Apache gerekmez.
(Bu nasıl örnekleri in the Nginx wiki) vardır fastcgi ile PHP çalıştırmak ve PHP bazı Raylar URL'leri ve diğerlerini yönlendirmek için Nginx yapılandırmasında bir URL eşleşen deseni kullanabilirsiniz.
Burada (. Da zaten bu yapılandırma ile çalışan fantezi URL'ler olacak bu yüzden de, WordPress htaccess ve Nginx eşdeğer koydum not) PHP fastcgi ile WordPress blog çalışan için bir örnek Nginx konfigürasyon:
server {
listen example.com:80;
server_name example.com;
charset utf-8;
error_log /www/example.com/log/error.log;
access_log /www/example.com/log/access.log main;
root /www/example.com/htdocs;
include /www/etc/nginx/fastcgi.conf;
fastcgi_index index.php;
# Send *.php to PHP FastCGI on :9001
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
}
# You could put another "location" section here to match some URLs and send
# them to Rails. Or do it the opposite way and have "/blog/*" go to PHP
# first and then everything else go to Rails. Whatever regexes you feel like
# putting into "location" sections!
location / {
index index.html index.php;
# URLs that don't exist go to WordPress /index.php PHP FastCGI
if (!-e $request_filename) {
rewrite ^.* /index.php break;
fastcgi_pass 127.0.0.1:9001;
}
}
}
İşte (Ben bu yüzden benim sanal konak yapılandırma tüm dosyaları doğru yere dahil ayrı bir dosyaya koyun, ama bunu yapmak zorunda değilsiniz) yukarıdaki config dahil ediyorum fastcgi.conf dosyasıdır:
# joelhardi fastcgi.conf, see http://wiki.codemongers.com/NginxFcgiExample for source
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
# PHP only, required if PHP was built with --enable-force-cgi-redirect
#fastcgi_param REDIRECT_STATUS 200;
Ben de Nginx wiki anlaşılacağı ne olur, ve (Lighttpd oldukça hızlı w / garip bağımlılıkları o derlemek, yüklemek için bu kadar hızlı ve kolay bir şey) benim CGI-yumurtlayan olarak Lighttpd dan spawn-fcgi kullanabilirsiniz, ama aynı zamanda yapabilirsiniz Bunun için kısa bir kabuk / Perl komut dosyası kullanabilirsiniz.