diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..8b2eef4 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,23 @@ +server { + listen 80; + server_name _; + + root /var/www/html/public; + index index.php; + + location / { + try_files $uri /index.php$is_args$args; + } + + location ~ \.php$ { + include fastcgi_params; + fastcgi_pass app:9000; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_intercept_errors on; + } + + location ~* \.(css|js|png|jpg|jpeg|gif|svg|ico|woff2?)$ { + expires 7d; + access_log off; + } +}