mirror of
https://github.com/laravel/valet.git
synced 2026-02-04 08:10:07 +01:00
48 lines
886 B
Nginx Configuration File
48 lines
886 B
Nginx Configuration File
user "VALET_USER" staff;
|
|
worker_processes auto;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
client_max_body_size 512M;
|
|
|
|
server_names_hash_bucket_size 128;
|
|
|
|
ssi on;
|
|
|
|
gzip on;
|
|
gzip_comp_level 5;
|
|
gzip_min_length 256;
|
|
gzip_proxied any;
|
|
gzip_vary on;
|
|
gzip_types
|
|
application/atom+xml
|
|
application/javascript
|
|
application/json
|
|
application/rss+xml
|
|
application/vnd.ms-fontobject
|
|
application/x-font-ttf
|
|
application/x-web-app-manifest+json
|
|
application/xhtml+xml
|
|
application/xml
|
|
font/opentype
|
|
image/svg+xml
|
|
image/x-icon
|
|
text/css
|
|
text/plain
|
|
text/x-component;
|
|
|
|
include "VALET_HOME_PATH/Nginx/*";
|
|
include servers/*;
|
|
include valet/valet.conf;
|
|
}
|