Nginx as frontend of apache images style not generate when clean-url is on
Posted by hkvega01 on September 25, 2015 at 12:00pm
i'm trying to make a nginx as a proxy of apache, when the clean-url is on, i upload a image to a field, the thumbnails is not generated. I had read all of the thread around the google and tried every solutions but not work, here is my nginx vhost file
server {
listen 80;
server_name www.example.com example.com;
access_log /var/log/virtualmin/example.com_nginx_access_log;
error_log /var/log/virtualmin/example.com_nginx_error_log;
location / {
index index.php;
proxy_pass http://192.168.1.104:8086;
include /etc/nginx/proxy.conf;
Read more