Sentora Support Forums

Full Version: webmail.xxxx.tld not working more
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
after udate

i cant get webmail.domain.tld to Work

Code:
</VirtualHost> # Configuration for WebMail - webmail.alio.dk <VirtualHost *:80> ServerAdmin Carsten@alio.dk         DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"         ServerName webmail.alio.dk     AddType application/x-httpd-php .php3 .php <Directory /> Options +FollowSymLinks -Indexes         AllowOverride All         Order Allow,Deny         Allow from all         </Directory>    
i get
Forbidden
You don't have permission to access / on this server.

Apache Server at webmail.alio.dk Port 80
UPDATE ???????????????? We never released an updater for sentora.

Would you explain more?

M B
i have uses the old sentora right after zpanel OLD version

and now use ver 1.0.0
Each time on new clean system ?? How are you updating?

We never released an updater.

M B
i made a new server on DO

install the new sentora and now i move manuelt all files and settings from my old server to the new

so i can close the old server so i dont pay for it

but my webmail.domain.tld dont Work on the new server but Works on the old
Did you check DNS?

Are you sure you applied ALL the same settings! Check again custom settings if you had any & DNS.

M B
all is the same

only new is the ip

but webmail is a cname and my A record works

i think it is the VirtualHost

but i have look inside httpd-vhost.conf and it looks like the default
Try with:

<VirtualHost *:80>
ServerAlias mail.*
DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"
AddType application/x-httpd-php .php
<Directory "/etc/sentora/panel/etc/apps/webmail/">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
(02-02-2015, 08:54 PM)Diablo925 Wrote: [ -> ]after udate

i cant get webmail.domain.tld to Work


Code:
</VirtualHost> # Configuration for WebMail - webmail.alio.dk <VirtualHost *:80> ServerAdmin Carsten@alio.dk         DocumentRoot "/etc/sentora/panel/etc/apps/webmail/"         ServerName webmail.alio.dk     AddType application/x-httpd-php .php3 .php <Directory /> Options +FollowSymLinks -Indexes         AllowOverride All         Order Allow,Deny         Allow from all         </Directory>    
i get
Forbidden
You don't have permission to access / on this server.


Apache Server at webmail.alio.dk Port 80

you may use this --> chown -R www-data /var/sentora/panel/etc/apps/webmail/.
when moving files manualy to a web directory you have to fix the permisions
this code fix it chown -R www-data /var/sentora/panel/etc/apps/webmail/.
that works Smile

Thx
Pages: 1 2