Оптимизация конфига
Дмитрий Лялюев
dmitriy at lyalyuev.info
Mon Feb 25 13:14:07 UTC 2013
Есть написанный мной конфиг. Хотелось бы выслушать предложения по его
оптимизации и ругань, что я ламер и надо делать все не так. :) Поможете?
server {
listen 80 default;
server_name ~^(?:www\.)*(?<HBW>.+)$;
server_name_in_redirect off;
access_log off;
error_log /var/log/nginx/proxy.log;
root /var/www/apps/application/current/public;
include /etc/nginx/banned_ip.conf;
location / {
try_files /maintenance.html $uri @apache;
location ~ ^(/Help|/pub) {
proxy_pass http://wiki.application.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location ~ /(assets|images/egg/sites) {
expires modified +30d;
access_log off;
try_files /maintenance.html $uri @apache;
}
location ~ ^/stylesheets/(.*)/(.*) {
rewrite /stylesheets/(.*) /assets/$1 last;
}
location ~ ^/(images|javascripts) {
rewrite /(images|javascripts)/(.*) /assets/$2 last;
}
location ~* \.(gif|jpg|png|ico)$ {
root /var/www/apps/application/current/eggs/$HBW;
access_log off;
expires modified +30d;
error_page 404 @apache;
}
}
location /crossdomain.xml$ {
root /var/www/crossdomains/$HBW;
}
location @apache {
proxy_pass http://localhost:8080;
include /etc/nginx/proxy.conf;
}
}
Спасибо заранее. :)
--
С уважением,
Дмитрий Лялюев
тел. +380 (66) 532-29-62
Все контакты для связи на http://lyalyuev.info
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx-ru/attachments/20130225/331c9004/attachment.html>
Подробная информация о списке рассылки nginx-ru