add .gitignore

parent f61c63d0
.idea
composer.phar
vendor/
upstream laravel-test-backend {
server php-neuro-images:9000;
}
server {
listen 80;
root /var/www/code/public;
location / {
index index.php index.html;
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass laravel-test-backend;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment