wcms icon indicating copy to clipboard operation
wcms copied to clipboard

Caddy seems fine too

Open ppom0 opened this issue 3 months ago • 0 comments

I just adapted the Nginx configuration written in #541 to Caddy:

root * /var/www/html

request_body {
	max_size 50MB
}

# Files
@files {
	path /assets/* /media/*
}
file_server @files

# Rewrite
@rewrite {
	not path /assets/* /media/*
}
rewrite @rewrite /index.php

# PHP
php_fastcgi /index.php unix//run/php/php8.2-fpm.sock

This must be in a site block, just like nginx.

ppom0 avatar Sep 08 '25 16:09 ppom0