> Adding these 2 parameters solved everything for me: > --check-static /var/www/prestashop/ --static-skip-ext .php > > > The complete uwsgi parameter: > > LD_LIBRARY_PATH=/usr/local/php5-emb/lib ./uwsgi --plugin plugins/php/php > --php-ini /usr/local/php5-emb/lib/php.ini --check-static > /var/www/prestashop/ --static-skip-ext .php --php-allowed-ext .php > --php-index index.php --php-docroot /var/www/prestashop --master > --socket 127.0.0.1:3030 --processes 4 --chdir /var/www/prestashop > --route-run setmodifier1:14 > > > > Thanks again, Tamer!
If you plan to serve static resources with uWSGI add --offload-threads N in this way your workers will not waste time transferring static data -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
