Skip to content

Instantly share code, notes, and snippets.

@mihkels
mihkels / gitbashAdmin.bat
Last active February 22, 2017 11:43 — forked from yoavniran/gitbashAdmin.bat
ConEmu - Run GitBash as Admin
"%ConEmuDrive%\Program Files\Git\bin\sh.exe" --login -i -new_console:a
@mihkels
mihkels / silex-php.conf
Last active January 31, 2016 13:50 — forked from simonjodet/gist:2713959
Pretty URLs for Silex micro-framework using Nginx. Added GET query parameters support. I prefer to run ngnix server virtual host configurations on none standard ports because it requires zero configuration in hosts file.
server {
listen 8080;
server_name localhost;
access_log /var/log/nginx/website.access_log;
error_log /var/log/nginx/website.error_log;
root /path/to/silex/web/;
index index.php;