You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 rivejä
510 B

  1. server {
  2. listen 80;
  3. # this path MUST be exactly as docker-compose.fpm.volumes,
  4. # even if it doesn't exist in this dock.
  5. root /var/www/html/public;
  6. client_max_body_size 16M;
  7. location / {
  8. try_files $uri /index.php$is_args$args;
  9. }
  10. location ~ ^/.+\.php(/|$) {
  11. fastcgi_pass php:9000;
  12. fastcgi_buffers 16 16k;
  13. fastcgi_buffer_size 32k;
  14. include fastcgi_params;
  15. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  16. }
  17. }