Skip to content

Instantly share code, notes, and snippets.

View baumannsven's full-sized avatar

Sven Baumann baumannsven

  • way.vision
  • Deutschland
View GitHub Profile
@baumannsven
baumannsven / contao3.conf
Created July 21, 2017 21:51 — forked from RavuAlHemio/contao3.conf
Contao 3 and 4 nginx.conf
index index.php index.html;
location ~ ^/(favicon\.ico|robots\.txt)$ {
allow all;
log_not_found off;
access_log off;
}
# don't show templates
location ~* \.(tpl|html5|xhtml)$ {
@baumannsven
baumannsven / default
Created August 10, 2016 21:12 — forked from dtomasi/default
Brew Nginx PHP7
server {
listen 80;
server_name localhost;
root /Users/YOUR_USERNAME/Sites;
access_log /Library/Logs/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}