linux-ubuntu-server/etc/nginx/include/free-file-sync.conf
Mike Phares 6c9fa8cfaa DHCP
Static IP
txt to bash
firefox ssh
2025-03-01 14:45:52 -07:00

39 lines
1.2 KiB
Plaintext

server {
ssl_certificate /home/podman/wild-phares/fullchain.cer;
ssl_certificate_key /home/podman/wild-phares/phares.duckdns.org.key;
ssl_protocols TLSv1.2 TLSv1.3;
listen 443 ssl http2;
server_name free-file-sync-still.phares.duckdns.org;
root /mnt/free-file-sync/still;
location / {
autoindex on;
disable_symlinks on;
autoindex_format json;
}
}
server {
ssl_certificate /home/podman/wild-phares/fullchain.cer;
ssl_certificate_key /home/podman/wild-phares/phares.duckdns.org.key;
ssl_protocols TLSv1.2 TLSv1.3;
listen 443 ssl http2;
server_name free-file-sync-moving.phares.duckdns.org;
root /mnt/free-file-sync/moving;
location / {
autoindex on;
disable_symlinks on;
autoindex_format json;
}
}
server {
ssl_certificate /home/podman/wild-phares/fullchain.cer;
ssl_certificate_key /home/podman/wild-phares/phares.duckdns.org.key;
ssl_protocols TLSv1.2 TLSv1.3;
listen 443 ssl http2;
server_name free-file-sync-a.phares.duckdns.org;
root /mnt/free-file-sync/1-Images-A;
location / {
autoindex on;
disable_symlinks on;
autoindex_format json;
}
}