Tls off run on port 2015

Hello, I want to host a wordpress without https but when I turn off tls caddy will start this domain on port 2015.

This is my Config

  blinderaktionismus.org {
        tls off
        root /var/www/ba/
        gzip
        fastcgi / 127.0.0.1:9000 php
        rewrite {
                if {path} not_match ^\/wp-admin
                to {path} {path}/ /index.php?{query}
        }
}

All my other domains are running well on port 80 and 443.

Automatic HTTPS changes the port to 443 for you; but if you disable that, then you have to change from the default port yourself. http://blinderaktionismus.org will do what you want (and you don’t need tls off).

Remove line tls off and add :80 after domain. Example:

blinderaktionismus.org:80 {
	root /var/www/ba/
	gzip
	fastcgi / 127.0.0.1:9000 php
	rewrite {
		if {path} not_match ^\/wp-admin
		to {path} {path}/ /index.php?{query}
	}
}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.