Replies: 2 comments 7 replies
-
Please check the server logs, it looks like the server was unable to download the webadmin from Github. |
Beta Was this translation helpful? Give feedback.
3 replies
-
I’m experiencing a similar issue where I can’t access the WebUI, although the Docker logs appear normal. The deployment works fine on a VPS in Los Angeles, but I’m having trouble with it on an Alibaba Cloud (Aliyun) VPS located in mainland China. Could this be related to the network environment? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As the title suggests, when I deployed the system through Docker, accessing the web interface returned an error message
The error message is as follows:
{
"type": "about:blank",
"status": 404,
"title": "Not Found",
"detail": "The requested resource does not exist on this server."
}
My server system: CentOS 8
My installation process:
docker pull stalwartlabs/mail-server:latest
mkdir /var/lib/stalwart-mail
docker run -d -ti -p 444:443 -p 8080:8080 -p 25:25 -p 587:587 -p 465:465 -p 143:143 -p 993:993 -p 4190:4190 -p 110:110 -p 995:995 -v /var/lib/stalwart-mail:/opt/stalwart-mail --name stalwart-mail stalwartlabs/mail-server:latest
I checked the Docker log and it has generated an administrator password for me, but the web management interface cannot be accessed
Beta Was this translation helpful? Give feedback.
All reactions