File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ server {
8787 listen [::]:443 ssl;
8888
8989 root /home/reports/error-reporting-server/webroot/;
90- index index.html index.htm index. php;
90+ index index.php;
9191
9292 server_name reports.phpmyadmin.net;
9393
@@ -105,6 +105,21 @@ server {
105105 include fastcgi_params;
106106 }
107107}
108+ ```
109+ - Configuration for Caddy:
110+ ``` Caddyfile
111+ https://reports.phpmyadmin.net {
112+ # Set this path to your site's directory.
113+ root * /home/reports/error-reporting-server/webroot/
114+ php_fastcgi unix//var/run/php8.4-fpm-reports.sock
115+
116+ # Enable the static file server.
117+ encode gzip
118+ file_server
119+
120+ try_files {path} {path}/ /index.php?{query}
121+ }
122+
108123```
109124
110125## OAuth configuration setup
You can’t perform that action at this time.
0 commit comments