라라벨 nginx conf 예제

server { client_body_in_file_only clean; client_body_buffer_size 32K; client_max_body_size 300M; sendfile on; send_timeout 300s; # Port that the web server will listen on. #listen 80; # Host that will serve this project.…

0 Comments

[라라벨] nginx 설정

server { listen 80; listen [::]:80; server_name example.com; root /srv/example.com/public; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.php; charset utf-8; location / { try_files $uri $uri/ /index.php?$query_string; } location =…

0 Comments

End of content

No more pages to load