Page 1 of 1

About Roundcube url

Posted: Fri May 16, 2014 6:40 am
by kudouyuzi
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

Posted: Fri May 16, 2014 2:08 pm
by demian
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

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

Posted: Fri May 16, 2014 3:13 pm
by kudouyuzi
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 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/;
   }
}
how to update Roundcube?

Re: About Roundcube url

Posted: Wed May 21, 2014 9:06 am
by kudouyuzi
How to shield original link?(http://192.168.1.8/webmail/)

Re: About Roundcube url

Posted: Tue Jun 17, 2014 8:36 pm
by kudouyuzi
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 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/;
   }
}
i want to only use {webmail.website.com}