Skip to content

Instantly share code, notes, and snippets.

@barraponto
Created June 14, 2013 14:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barraponto/5782444 to your computer and use it in GitHub Desktop.
Save barraponto/5782444 to your computer and use it in GitHub Desktop.
user http;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
events {
worker_connections 1024;
multi_accept on;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
sendfile on;
tcp_nopush on;
gzip on;
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image/x-icon application/vnd.ms-fontobject font/opentype application/x-font-ttf;
client_max_body_size 2m;
upload_progress uploads 2m;
server {
listen 80;
server_name *.drp.lan;
root /home/barraponto/Web/$host;
index index.php;
location ~ \.php$ {
include fastcgi.conf;
fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
}
}
server {
listen 80;
server_name *.st.lan;
root /home/barraponto/Web/$host;
index index.html index.htm;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment