Basic Auth Middleware
The configuration is slightly different for Standard Applications
and Docker Compose based applications/one-click services
.
Standard Applications
In the example above, we are using test
as username and test
as password.
Note: The <random_unique_name>
and <unique_router_name>
are placeholders. You need to replace them when you add them to your own labels section.
The <random_unique_name>
is a unique name for the middleware and you need to make that up yourself. The <unique_router_name>
is the unique name for the router that Coolify has already generated for you.
An ngnix Simple Web Container Example
Let’s say you have an ngnix simple web container that was generated by Coolify with the following Dockerfile:
The Container Labels
generated by Coolify would look like this:
If you want to add basic authentication to this service, assuming you want to name your auth middleware mybasicauth
, you could add the following label below the
first line traefik.enable=true
:
traefik.http.middlewares.mybasicauth.basicauth.users=test:$2y$12$ci.4U63YX83CwkyUrjqxAucnmi2xXOIlEF6T/KdP9824f1Rf1iyNG
Notice that mybasicauth
has replaced the <random_unique_name>
placeholder. In other words, you have named your own auth middleware mybasicauth
.
Then you need to add the middleware to the router label, and since one or more middlewares are already set, you need to append the new middleware to the existing value.
For example you would update the current line
traefik.http.routers.http-0-wc04wo4ow4scokgsw8wow4s8.middlewares=redirect-to-https
to:
traefik.http.routers.https-0-wc04wo4ow4scokgsw8wow4s8.middlewares=gzip,mybasicauth
Notice that in this case <unique_router_name>
has been replaced with https-0-wc04wo4ow4scokgsw8wow4s8
which is the unique name for the router that Coolify has already generated for you.
Your ngnix
simple web container is protected by basic authentication.
Docker Compose And Services
To add basicauth
middleware to your service, you need to add the following labels to your docker-compose.yml
file.:
You should replace the placeholders <random_unique_name>
with a unique name for the middleware. For example, you might name it mybasicauth
, and then
replace the placeholder with mybasicauth
. That label would then look like this:
We have now added basicauth
middleware to the nginx-simple-web-container
service.
Your ngnix
simple web container is protected by basic authentication with a username of test and password of test.
Note: When applying basic authentication labels, special characters like $, @, and , must be escaped to avoid parsing errors. That is for example, enclose the label values in quotes and use a backslash () before special characters if you’re using double quotes.
How to generate user/password?
You need to set your username and password in the basicauth.users
label.
You can generate one with the htpasswd command:
This will generate a password hash for the user test
with the password test
.
You can then replace test
with the desired username and password. Then substitute the generated hash in the basicauth.users
label above.
Note: the htpasswd
command is available on most Linux distributions. It is part of the apache2-utils
package on Debian/Ubuntu and
can be found here.