1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 16:40:05 +01:00

Merge pull request #393 from moccalotto/master

Fix 128mb max client body size for secured sites.
This commit is contained in:
Adam Wathan
2017-06-22 07:26:24 -04:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ server {
server_name VALET_SITE www.VALET_SITE *.VALET_SITE;
root /;
charset utf-8;
client_max_body_size 128M;
location /VALET_STATIC_PREFIX/ {
internal;

View File

@@ -2,6 +2,7 @@ server {
listen 80 default_server;
root /;
charset utf-8;
client_max_body_size 128M;
location /VALET_STATIC_PREFIX/ {
internal;