Skip to content

Instantly share code, notes, and snippets.

View torniker's full-sized avatar
🐒
monkeying

Tornike Razmadze torniker

🐒
monkeying
View GitHub Profile
@torniker
torniker / nginx.conf
Created May 13, 2015 11:16
Nginx phpfmp configuration for laravel
upstream phpfcgi {
server phpfpm:9000;
}
server {
listen 80 default;
server_name local.dev;
root /var/www/public;
index index.php index.html index.htm;
@torniker
torniker / fpm.conf
Created May 13, 2015 11:07
Php FPM config
[global]
error_log = /proc/self/fd/2
daemonize = no
[www]
# BOOT2DOCKER LIMITATIONS
user = root
group = root
# SYMFONY 2 REQUIREMENTS
@torniker
torniker / php.ini
Created May 13, 2015 11:06
Sample Php ini
[PHP]
engine = On
short_open_tag = On
asp_tags = Off
precision = 14
output_buffering = 4096
zlib.output_compression = Off
implicit_flush = Off
unserialize_callback_func =
serialize_precision = 17