
Caddy is an open-source web server that supports static and modern web applications using predefined configuration rules with automatic HTTPS enabled for all linked domain names. Written in GO, Caddy offers user-friendly configuration directives that enable you to either use it as a web server, reverse proxy, or load balancer to serve web applications on your server.
This article explains how to install the Caddy web server on Ubuntu 24.04 and securely serve web applications on the server.
Before you begin:
Deploy an Ubuntu 24.04 server instance on Vultr.
Create a domain name A record pointing to the server IP address.
Access the server using SSH.
Create a non-root account with sudo privileges and switch to the account.
Caddy is not available in the default Ubuntu 24.04 APT repositories but can be installed from source files or by adding the latest repository information on your server. Follow the steps below to download the latest Caddy repository information and install the application on your server.
Add the latest Caddy GPG Key to your server.
Add the Caddy repository to your APT sources.
Update the server package index.
Install Caddy.
View the installed Caddy version to verify that the installation is successful.
Output:
Allow incoming connections to the HTTP port 80 through the firewall.
Restart the firewall to apply changes.
Access your server IP to test access to the Caddy web server.
Confirm that the default Caddy webpage displays in your browser.
Enable Caddy to start at boot time.
Start the Caddy web server.
View the Caddy system service status to verify that the application is running.
Output:
Caddy stores configuration files in the /etc/caddy directory by default and supports Caddyfile configurations from any location on your server. Follow the steps below to create a new Caddy virtual host to serve web application files from the /var/www/example.com directory on your server.
Create the /var/www/example.com web application files directory.
Create a new HTML application file index.html.
Add the following code to the file.
Save and close the file.
Switch to the Caddy configuration files directory.
Back up the default Caddyfile configuration.
Create a new Caddyfile configuration.
Add the following configurations to the file.
Save and exit the file.
The above Caddy configuration creates a new virtual host using your domain example.com. Within the configuration:
example.com: Creates a new virtual host profile using your IP address or domain.tls: Specifies the email address to associate with Let's Encrypt SSL certificate generation requests.root: Sets the virtual host web application files directory.file_server: Enables the web application file server. Within the directive, index specifies the default file to serve when your domain is accessed.log: Enables logging of access and error details to a specific file such as /var/log/caddy/example.log.Test the Caddy configuration for errors.
Output:
Reload the Caddy web server to apply your configuration changes.
Caddy uses automatic HTTPS to secure all connections using SSL certificates on virtual host profiles with valid domains on your server. Follow the steps below to secure the Caddy web server by limiting access to the Caddyfile configurations from unintended or unauthorized user changes.
Grant the Caddy user full privileges to the /etc/caddy directory.
Grant the Caddy user read and write permissions to the Caddyfile while disabling access for other system users.
Long list the /etc/caddy directory to verify the permission changes.
Output:
Caddy uses the HTTP port 80 and HTTPS port 443 depending on your Caddyfile configurations to serve files on the server. Follow the steps below to allow all the Caddy ports through the firewall and enable network connections to the web server.
View the UFW status and verify that it's active.
If the status is inactive, allow the SSH port 22 and enable UFW.
Allow incoming connections to the HTTP port 80.
Allow incoming connections to the HTTPS port 443.
Reload the firewall to apply changes
Access your domain using a browser such as Chrome to verify that Caddy serves your virtual host web application fils.
If you receive a connection error, view the Caddy configuration logs to verify the error details.
You have installed the Caddy web server on an Ubuntu 24.04 server and set up a virtual host profile to serve web application files on the server. Visit the Caddy documentation for more information and configuration options.
0 Comments
Be the first to comment and share your perspective with the community.