fix: move docroot seed to /srv/www/html with config v7
Some checks failed
cc-ci/testme cc-ci: failure

This commit is contained in:
autonomic-bot
2026-05-31 19:54:21 +00:00
parent fc2c80cfac
commit 9802e61496
3 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ server {
#access_log /var/log/nginx/host.access.log main;
location / {
root /var/www/html;
root /srv/www/html;
index index.html index.htm;
autoindex on;
@ -25,14 +25,14 @@ server {
error_page 404 /404.html;
location = /404.html {
root /var/www/html;
root /srv/www/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
root /srv/www/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80