Last active
December 19, 2015 14:19
-
-
Save pricejn2/5968071 to your computer and use it in GitHub Desktop.
TYPO3 nginx vhost configuration file for use with https://github.com/omega8cc/nginx-for-drupal servers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
include /data/disk/o1/config/includes/fastcgi_params.conf; | |
limit_conn gulag 32; # like mod_evasive - this allows max 32 simultaneous connections from one IP address | |
listen *:80; | |
server_name typo3.example.com; | |
root /data/disk/o1/static/www/typo3.example.com; | |
# Extra configuration for TYPO3 -- see http://www.howtoforge.com/running-typo3-4.6-on-nginx-lemp-on-debian-squeeze-ubuntu-11.10: | |
index index.php index.html; | |
location = /favicon.ico { | |
log_not_found off; | |
access_log off; | |
expires max; | |
} | |
location = /robots.txt { | |
allow all; | |
log_not_found off; | |
access_log off; | |
} | |
# Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). | |
location ~ /\. { | |
deny all; | |
access_log off; | |
log_not_found off; | |
} | |
location ~* \.(jpg|jpeg|png|gif|css|js|ico)$ { | |
expires max; | |
log_not_found off; | |
} | |
location ~* \.(cur|ico|gif|png|jpe?g|css|js|swf|woff)((\?\d\d\d\d\d\d\d\d\d\d)|(\?s=\d\d\d\d\d\d\d\d\d\d))$ { | |
expires max; | |
log_not_found off; | |
} | |
location ~* \.(cur|ico|gif|png|jpe?g|css|js|swf|woff)(\?v\d\d?\.\d\d?\.\d\d?)$ { | |
expires max; | |
log_not_found off; | |
} | |
location ~* ^(/typo3/sysext|/typo3conf/ext).*\.(cur|ico|gif|png|jpe?g|css|js|swf|woff) { | |
expires max; | |
log_not_found off; | |
} | |
location = /clear.gif { | |
empty_gif; | |
expires max; | |
} | |
location ^~ /typo3/gfx { | |
expires max; | |
} | |
location ^~ /typo3temp/compressor { | |
expires max; | |
} | |
location ~* \.(sql|htaccess|htpasswd|tpl|html5|xhtml) { | |
deny all; | |
} | |
location / { | |
if ($query_string ~ ".+") { | |
return 405; | |
} | |
# pass requests from logged-in users to PHP | |
if ($http_cookie ~ 'nc_staticfilecache|be_typo_user' ) { | |
return 405; | |
} # pass POST requests to PHP | |
if ($request_method !~ ^(GET|HEAD)$ ) { | |
return 405; | |
} | |
if ($http_pragma = 'no-cache') { | |
return 405; | |
} | |
if ($http_cache_control = 'no-cache') { | |
return 405; | |
} | |
error_page 405 = @nocache; | |
# serve requested content from the cache if available, otherwise pass the request to PHP | |
try_files /typo3temp/tx_ncstaticfilecache/$host${request_uri}index.html @nocache; | |
} | |
location @nocache { | |
try_files $uri $uri/ /index.php?$args; | |
} | |
location ^~ /typo3temp/tx_ncstaticfilecache { | |
expires 43200; | |
charset utf-8; | |
} | |
location ~ \.php$ { | |
tcp_nopush off; | |
keepalive_requests 0; | |
access_log off; | |
try_files $uri =404; ### check for existence of php file first | |
fastcgi_pass 127.0.0.1:9090; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment