EwoMail邮件服务器系统web登陆页面如何修改不需要端口8000直接访问
EwoMail邮件服务器搭建后访问登陆页面是 http://mail.laotie.love:8000 这样的格式,需要添加端口。如果不需要添加端口,则需要修改配置文件。
nginx系统环境下:
服务器找到路径
`/ewomail/nginx/conf/vhost`
找到文件rainloop.conf
server {
server_name localhost;
listen 8000;
把这个8000改成80
找到文件rainloop-ssl.conf
server {
server_name localhost;
listen 7000 ssl;
把这个7000 改成443
重启服务器即可
apache系统环境下:
找到 /ewomail/apache/conf/extra/httpd-vhosts.conf
ServerName localhost
DocumentRoot /ewomail/www/rainloop/
DirectoryIndex index.php index.html index.htm
Options +Includes -Indexes
AllowOverride All
Order Deny,Allow
Allow from All
把8000 改成80即可
评论
评论 (0)