Comment to 'UNA nginx rewrite rules'
  • It is now running under php7.2 - long story.  Same issue.  The images and videos are uploaded  - just can't see them.  Hit refresh - and they appear.

    Here is a copy of the error log - the only activity it is reporting on is the upload of images to the timeline.  

    https:// www.manconnector.com /error.txt

    • I see two problems in your logs:

      1) upstream sent too big header while reading response header from upstream

      you will probably need to increase some setting in Nginx configuration, try to set:

      fastcgi_buffers 16 16k;
      fastcgi_buffer_size 32k;

      in php handled block, usually it begins like this - location ~ \.(php|php5)$ {

      2) open_basedir restriction in effect

      please try to remove open_basedir restriction in php confoguration if possible

      in the future we'll try to make UNA work with this restruction set - https://github.com/unaio/una/issues/1881

      • Thank you so much. That was extremely helpful.  The fastcgi settings worked.  Working on the basedir restrictions.