• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Caddyserver | The HTTP/2 web server with automatic HTTPS

Cornex

Web Developer
Staff member
Global Moderator
Joined
Jun 15, 2008
Messages
3,444
Solutions
5
Reaction score
1,166
Location
Sweden
I recently came across this web server, tried it, and it is awesome.
It will setup HTTPS using lets encrypt. Got a few addons, but you can extend caddyserver as you want: https://github.com/mholt/caddy/wiki/Extending-Caddy

https://caddyserver.com/

There are a lot more nice features. An example from my Caddyfile
Code:
bitaac.com {
    root /var/www/bitaac.com/www/public
    log access.log
    errors error.log
    fastcgi / /var/run/php/php7.0-fpm.sock php

    rewrite / {
        to {path} {path}/ /index.php?{query}
    }
}

Note: I am not gonna help anyone set it up, it is perfectly described in their own documentation.
Note2: If you are using Cloudflare, make sure to change SSL to 'strict'. Source: https://laracasts.com/discuss/channels/forge/lets-encrypt-ssl-too-many-redirects
 
In a (sysmin) forum I am taking part in Caddyserver is being actively deployed from quite a lot of people since a couple of months already^^ I just cant get myself to step away from apache and its modules. Cba to deal with new ones xD
 
Back
Top