Skip to content

Instantly share code, notes, and snippets.

@jcchikikomori
Last active October 10, 2019 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcchikikomori/6f94a34130b8194cbf860ab418e63710 to your computer and use it in GitHub Desktop.
Save jcchikikomori/6f94a34130b8194cbf860ab418e63710 to your computer and use it in GitHub Desktop.
LINUX VALET HOSTS for BEDROCK - because valet link command was a pussy
server {
listen 80;
server_name bedrock-mohawk.localhost;
charset utf-8;
root /home/jccorsanes/www/bedrock-project/web;
index index.php index.html;
#access_log /usr/local/var/log/nginx/access.log;
#error_log /usr/local/var/log/nginx/error.log;
access_log off;
error_log /home/yourusername/.valet/Log/nginx-error.log;
location ~ ^(.+\.php)(.*)$ {
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_pass unix:/home/yourusername/.valet/valet.sock;
fastcgi_index index.php;
include fastcgi_params;
}
client_header_timeout 3000;
client_body_timeout 3000;
fastcgi_read_timeout 3000;
client_max_body_size 32m;
fastcgi_buffers 8 128k;
fastcgi_buffer_size 128k;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment