Compare commits
3 Commits
Gemini-ver
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 4819b26650 | |||
| 179a3413f4 | |||
| 04a401a11d |
7
LastFM_API
Normal file
7
LastFM_API
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
API account created
|
||||||
|
|
||||||
|
Here are the details of your new API account.
|
||||||
|
Application name Navidrome
|
||||||
|
API key 7ec8307d9f78e3ca67ec7feec6f27421
|
||||||
|
Shared secret 0712b8540010e34f4233e518e43deb38
|
||||||
|
Registered to jsolejr67
|
||||||
12
jellyfin-certs
Normal file
12
jellyfin-certs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
Requesting a certificate for jellyfin1.solefamily.com
|
||||||
|
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/jellyfin1.solefamily.com/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/jellyfin1.solefamily.com/privkey.pem
|
||||||
|
This certificate expires on 2025-07-03.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
Certbot has set up a scheduled task to automatically renew this certificate in the background.
|
||||||
|
|
||||||
|
Deploying certificate
|
||||||
|
Successfully deployed certificate for jellyfin1.solefamily.com to /etc/nginx/sites-enabled/default_catchall
|
||||||
|
Congratulations! You have successfully enabled HTTPS on https://jellyfin1.solefamily.com
|
||||||
@@ -25,15 +25,14 @@ server {
|
|||||||
# Comment next line to allow TLSv1.0 and TLSv1.1 if you have very old clients
|
# Comment next line to allow TLSv1.0 and TLSv1.1 if you have very old clients
|
||||||
ssl_protocols TLSv1.3 TLSv1.2;
|
ssl_protocols TLSv1.3 TLSv1.2;
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/jellyfin1.solefamily.com/fullchain.pem;
|
ssl_certificate /etc/letsencrypt/live/example.org/fullchain.pem;
|
||||||
ssl_certificate_key /etc/letsencrypt/live/jellyfin1.solefamily.com/privkey.pem;
|
ssl_certificate_key /etc/letsencrypt/live/example.org/privkey.pem;
|
||||||
include /etc/letsencrypt/options-ssl-nginx.conf;
|
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||||||
#ssl_trusted_certificate /etc/letsencrypt/live/example.org/chain.pem;
|
ssl_trusted_certificate /etc/letsencrypt/live/example.org/chain.pem;
|
||||||
|
|
||||||
|
|
||||||
# use a variable to store the upstream proxy
|
# use a variable to store the upstream proxy
|
||||||
set $jellyfin 192.168.50.194;
|
set $jellyfin 127.0.0.1;
|
||||||
|
|
||||||
# Security / XSS Mitigation Headers
|
# Security / XSS Mitigation Headers
|
||||||
add_header X-Content-Type-Options "nosniff";
|
add_header X-Content-Type-Options "nosniff";
|
||||||
Reference in New Issue
Block a user