Remove basic auth from Plex
Plex now has authentication even for local servers. The basic auth for the plex endpoint is redundant.
This commit is contained in:
parent
b437f09ed5
commit
12ad9c4d2e
|
@ -70,6 +70,7 @@ http {
|
||||||
server {
|
server {
|
||||||
include common.conf;
|
include common.conf;
|
||||||
server_name ~^(plex)(\.\w+)+$;
|
server_name ~^(plex)(\.\w+)+$;
|
||||||
|
auth_basic "off";
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
set $plex http://plex:32400;
|
set $plex http://plex:32400;
|
||||||
|
|
Loading…
Reference in New Issue