Пример рабочего виртуального хоста test.sm.conf под ещё один замечательный продукт http://winginx.ru
- Код: Выделить всё
server {
listen 127.0.0.1:80;
server_name test.sm www.test.sm;
root home/test.sm/public_html;
index index.php index.html;
log_not_found off;
charset utf-8;
access_log logs/online55.sm-access.log main;
location ~ /\. {
deny all;
}
location ~* ^.+\.(ico|txt|jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf|exe)$ { }
location / {
if (!-f $request_filename) {
rewrite ^ /index.php;
}
fastcgi_pass localhost:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Оказываю помощь в настройке.