2016-07-13 15:34:12 -04:00
|
|
|
# static files
|
|
|
|
|
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
|
2017-03-24 22:45:53 -04:00
|
|
|
root "${PROJECTBASE}/${PROJECTNAME}/static";
|
2016-07-13 15:34:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location = /favicon.ico {
|
2017-03-24 22:45:53 -04:00
|
|
|
root "${PROJECTBASE}/${PROJECTNAME}/static/images";
|
2016-07-13 15:34:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# pass all requests to FastCGI TG server listening on ${HOST}:${PORT}
|
|
|
|
|
#
|
|
|
|
|
location / {
|
2017-03-24 22:45:53 -04:00
|
|
|
fastcgi_pass "${HOST}:${PORT}";
|
2016-07-13 15:34:12 -04:00
|
|
|
fastcgi_index index;
|
|
|
|
|
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
|
|
|
|
|
include conf/fastcgi_params;
|
|
|
|
|
}
|