cloneMe / turbo-seedbox

This project deploys a multi-users seedbox, using Docker. It will install: rtorrent, sickrage, couchpotato, plex, teamspeak, ...
MIT License
40 stars 12 forks source link

Authentication asked for every service #4

Closed darkipo closed 7 years ago

darkipo commented 7 years ago

Hi,

It seems that user has to authenticate to each service on the server. For example, if you access to both pages:

Your credentials will be asked twice because they're not shared. Am I right? The issue is explained here.

In order to correct this problem, the nginx conf should declare only one server with many locations (one location by service). Instead of having service1.domain.com, service2.domain.com, it would be domain.com/service1, domain.com/service2. So it means every URL would be changed but the authentication would be done only once because browsers would understand that it the same server.

What do you think? Do you think about an other solution? I can create a pull request.

Thanks