Hi, I configured my apache installation to run each virtual server with its own user, i.e.:
<VirtualHost *:80>
DocumentRoot "/home/user/www"
ServerName user.it
ServerAlias *.user.it
ServerAdmin [email protected]
AssignUserId user user
ErrorLog /home/user/log/error-log
CustomLog /home/user/log/log common
<Directory "/home/user/www">
allow from all
Options +Indexes
AllowOverride all
Order allow,deny
</Directory>
</VirtualHost>
I noticed that since I installer phalcon every file generated by my webapp doesn't belong anymore to user:user, but it know belongs to the default apache user www-data:www-data. Is there a way to change this behavior? I really need each user being able to completely own the files in his directory... Thank you in advance, Simone