When I try to run a2enmod php7.0 - I got message \"Considering conflict php5 for php7.0\".
a2enmod php7.0
After restarting apache - apache can\'t start.
How t
First, disable the php5 module:
php5
a2dismod php5
then, enable the php7 module:
php7
Next, reload/restart the Apache service:
service apache2 restart
wrt the comment, you need to specify exact installed php-7.x version.