Skip to content

Instantly share code, notes, and snippets.

@beansme
Created April 7, 2016 07:43
Show Gist options
  • Save beansme/882072ba33be4d4adad17b8630287751 to your computer and use it in GitHub Desktop.
Save beansme/882072ba33be4d4adad17b8630287751 to your computer and use it in GitHub Desktop.
nginx-laravel-5.1
#!/bin/bash
mkdir -p /$2/$1/{public_html,log,backup}
touch $1.conf
sudo bash -c cat << __EOF > $1.conf
server {
listen 80;
server_name $1;
root "/$2/$1/public_html/public";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files \$uri \$uri/ /index.php?\$query_string;
}
access_log off;
error_log /var/log/nginx/$1-error.log error;
location ~ \.php\$ {
try_files \$uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)\$;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
__EOF
sudo mv $1.conf /etc/nginx/conf.d/
sudo service nginx restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment