Serves the recordings directory over HTTP with autoindex on port 8080. Users can browse by date and play MP3 files natively in the browser. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
100 B
Nginx Configuration File
9 lines
100 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
alias /recordings/;
|
|
autoindex on;
|
|
}
|
|
}
|