We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0607506 commit 0ce6b89Copy full SHA for 0ce6b89
1 file changed
README.md
@@ -87,7 +87,7 @@ server {
87
listen [::]:443 ssl;
88
89
root /home/reports/error-reporting-server/webroot/;
90
- index index.html index.htm index.php;
+ index index.php;
91
92
server_name reports.phpmyadmin.net;
93
@@ -105,6 +105,21 @@ server {
105
include fastcgi_params;
106
}
107
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
123
```
124
125
## OAuth configuration setup
0 commit comments