diff --git a/.snippets/webservers/Caddyfile-nossl b/.snippets/webservers/Caddyfile-nossl index a8cca6b6..1b796e0f 100644 --- a/.snippets/webservers/Caddyfile-nossl +++ b/.snippets/webservers/Caddyfile-nossl @@ -6,7 +6,7 @@ } } -http:// { +:80 { root * /var/www/pterodactyl/public file_server diff --git a/panel/1.0/webserver_configuration.md b/panel/1.0/webserver_configuration.md index 47e06b56..51d12ca5 100644 --- a/panel/1.0/webserver_configuration.md +++ b/panel/1.0/webserver_configuration.md @@ -141,7 +141,7 @@ You should paste the contents of the file bellow, replacing `` with your The default config path is `/etc/caddy/Caddyfile`. -The only two differences are that we have prefixed the `` with `http://` (or you can use `:80` suffix behind the ``) and in the global config at `servers` directive, we have changed the port from `:443` to `:80`. +The only two differences are that we have suffixed the `` with `:80` and in the global config at `servers` directive, we have changed the port from `:443` to `:80`. <<< @/.snippets/webservers/Caddyfile-nossl{2,9}