gaby-one

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by gaby-one

  1. Thank you, it was very easy, i'm a little bit confused ^^
  2. Hi, I have more questions about the WebUI port modification @Quiks@Altek86 I've seen on a few websites that you have to modify the WEBUI_PORT environment variable and the port map (previous post in this topic from @Quiksand official wiki of the container : https://hub.docker.com/r/linuxserver/qbittorrent/ ) WEBUI_PORT variable Due to issues with CSRF and port mapping, should you require to alter the port for the webui you need to change both sides of the -p 8080 switch AND set the WEBUI_PORT variable to the new port. For example, to set the port to 8090 you need to set -p 8090:8090 and -e WEBUI_PORT=8090 This should alleviate the "white screen" issue. My first question is : Did you have to remove the old container and data and create a new one to achieve that? My second question : How do you do these things with details (commands to execute, files to modify, ...) ? I've tried to modify the environment variable in command line docker exec -it -e WEBUI_PORT=0000 qbittorrent bash # 0000 is the new port number and added a new port map. I had a lot of difficulties doing these simple things, I think I've done it but it doesn't work and I don't know enough docker to be sure I've done the right things. I spent a lot of time trying this and finding only few forums which explains the steps and they are not detailed enough for me. I'd like to find a way to modify this port without erasing all data involving the lose of torrents that I am seeding and qBittorrent config. I might want to modify it in the future too. Thanks, Gabriel
  3. Hi, I'm trying to enable an sftp port in order to be able to connect to my uraind server from the internet. I have followed this topic : https://www.digitalocean.com/community/tutorials/how-to-configure-proftpd-to-use-sftp-instead-of-ftp ... but the keys are protected I don't know how, I'm getting this error : mod_sftp/1.0.0: error reading passphrase for SFTPHostKey '/etc/ssh/ssh_host_rsa_key': Permission denied What is the best way to allow acess to these keys and keeping my server at least a little bit secure (I can't find enought info on internet about that)? Is there important security breaches I should be aware of while connecting this server to the internet (for ssh, ftp, sftp, ...) and solutions other than do not use common port numbers ?