feat: Jellyfin | enable server discovery
This commit is contained in:
@@ -43,7 +43,12 @@ export class JellyfinServer extends Construct {
|
|||||||
{
|
{
|
||||||
name: "http",
|
name: "http",
|
||||||
port: 80,
|
port: 80,
|
||||||
targetPort: "8096",
|
targetPort: "http",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "discovery",
|
||||||
|
port: 7359,
|
||||||
|
targetPort: "discovery",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
type: "ClusterIP",
|
type: "ClusterIP",
|
||||||
@@ -82,6 +87,10 @@ export class JellyfinServer extends Construct {
|
|||||||
containerPort: 8096,
|
containerPort: 8096,
|
||||||
name: "http",
|
name: "http",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
containerPort: 7359,
|
||||||
|
name: "discovery",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
env: [
|
env: [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user