About Roundcube url
About Roundcube url
How to change Webmail's url (192.168.1.2/webmail/) to like (192.168.1.2:8083/webmail/ Or Custom url (webmail.website.com) ?
Re: About Roundcube url
from webmail.website.com need create DNS record A for all domain
DNS record A mail.yourdimain.tld auto create for all add domain
worked from any domain
DNS record A mail.yourdimain.tld auto create for all add domain
worked from any domain
Code: Select all
# cat /etc/nginx/conf.d/webmail.conf
server {
listen <Your IP>:80;
server_name mail.*;
location / {
proxy_pass http://<Your IP>:8080/webmail/;
}
}
Re: About Roundcube url
how to update Roundcube?demian wrote:from webmail.website.com need create DNS record A for all domain
DNS record A mail.yourdimain.tld auto create for all add domain
worked from any domainCode: Select all
# cat /etc/nginx/conf.d/webmail.conf server { listen <Your IP>:80; server_name mail.*; location / { proxy_pass http://<Your IP>:8080/webmail/; } }
Re: About Roundcube url
How to shield original link?(http://192.168.1.8/webmail/)
Re: About Roundcube url
i want to only use {webmail.website.com}demian wrote:from webmail.website.com need create DNS record A for all domain
DNS record A mail.yourdimain.tld auto create for all add domain
worked from any domainCode: Select all
# cat /etc/nginx/conf.d/webmail.conf server { listen <Your IP>:80; server_name mail.*; location / { proxy_pass http://<Your IP>:8080/webmail/; } }