Skip to content

Instantly share code, notes, and snippets.

View bitamar's full-sized avatar

Itamar Shapira Bar-Lev bitamar

View GitHub Profile
@bitamar
bitamar / nginx.conf
Last active August 29, 2015 14:14 — forked from leon/nginx.conf
server {
listen 80;
server_name localhost;
root /home/website/web;
rewrite ^/app\.php/?(.*)$ /$1 permanent;
try_files $uri @rewriteapp;
location @rewriteapp {