Skip to content

axle-h/make-movies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Make Movies

Make Movies

Certified family proof (my family), movie library management on top of Jellyfin & Transmission.

API

.NET API

UI

Next.js UI

VPN

tor proxy

Reverse Proxy

The API + UI work well through a path routed reverse proxy. Example nginx.conf:

server {
  listen 8080;
  listen [::]:8080;

  location / {
    proxy_pass http://localhost:3000;
  }

  location /api {
    proxy_pass http://localhost:5000;
  }
  location /movie-images {
    proxy_pass http://localhost:5000;
  }
}

Kubernetes

Can be deployed fairly easily onto Kubernetes for e.g. as plain resources.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 2

  •  
  •