SeaFile Docker - Disable SSL v3How to force or redirect to SSL in nginx?Disable SSL for certain paths in NginxHow can I override CMD when running a docker image?Why isn't ifconfig available in Ubuntu Docker container?Removing Docker data volumes?How to remove an image tag in Docker without removing the image itself?NGINX SSL Pass-thru and Dockerrunning mongodb with ssl and docker secrets docker-compose sampleNginx, Docker-Compose and Let's encrypt connection refused, unless i disable ssldocker-compose, nginx, gunicorn and SSL

Sho, greek letter

Why do some games show lights shine through walls?

Should I include salary information on my CV?

How to split an equation over two lines?

Hot coffee brewing solutions for deep woods camping

Does the posterior necessarily follow the same conditional dependence structure as the prior?

How to extract the storage of a smart contract?

Should my manager be aware of private LinkedIn approaches I receive? How to politely have this happen?

Are Finite Automata Turing Complete?

Low-gravity Bronze Age fortifications

Why does the numerical solution of an ODE move away from an unstable equilibrium?

Smooth Julia set for quadratic polynomials

Archery in modern conflicts

Why aren't (poly-)cotton tents more popular?

As a DM, how do you control a dysfunctional group wanting different things out of a game?

What happens when I sacrifice a creature when my Teysa Karlov is on the battlefield?

Can White Castle? #2

Can the negators "jamais, rien, personne, plus, ni, aucun" be used in a single sentence?

Should I hide continue button until tasks are completed?

Does Marvel have an equivalent of the Green Lantern?

MH370 blackbox - is it still possible to retrieve data from it?

Is there a maximum distance from a planet that a moon can orbit?

Is there any set of 2-6 notes that doesn't have a chord name?

Change CPU MHz from Registry



SeaFile Docker - Disable SSL v3


How to force or redirect to SSL in nginx?Disable SSL for certain paths in NginxHow can I override CMD when running a docker image?Why isn't ifconfig available in Ubuntu Docker container?Removing Docker data volumes?How to remove an image tag in Docker without removing the image itself?NGINX SSL Pass-thru and Dockerrunning mongodb with ssl and docker secrets docker-compose sampleNginx, Docker-Compose and Let's encrypt connection refused, unless i disable ssldocker-compose, nginx, gunicorn and SSL






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have just SeaFile running in Docker, scanning the public interface I can see SSLv3 and TLS1.0 are enabled. I'd like to disable them but I'm at a loss as to where that would be configured in this setup.



I launched the container with



docker run -d --name seafile 
-e SEAFILE_SERVER_LETSENCRYPT=true
-e SEAFILE_SERVER_HOSTNAME=seafile.example.com
-e SEAFILE_ADMIN_EMAIL=me@example.com
-e SEAFILE_ADMIN_PASSWORD=a_very_secret_password
-v /opt/seafile-data:/shared
-p 8080:80
-p 8443:443
seafileltd/seafile:latest


It's running nginx as the webserver, i have the nginx configuration in the docker merged folder, effectively /etc/nginx, but I can't find anywhere the options for configuring the available ciphers.



grep -i -r "ssl_protocols" /etc/nginx/ returns zero results and after a bunch of digging through google results and bits of documentation I'm no further forward.



Any thoughts?










share|improve this question




























    0















    I have just SeaFile running in Docker, scanning the public interface I can see SSLv3 and TLS1.0 are enabled. I'd like to disable them but I'm at a loss as to where that would be configured in this setup.



    I launched the container with



    docker run -d --name seafile 
    -e SEAFILE_SERVER_LETSENCRYPT=true
    -e SEAFILE_SERVER_HOSTNAME=seafile.example.com
    -e SEAFILE_ADMIN_EMAIL=me@example.com
    -e SEAFILE_ADMIN_PASSWORD=a_very_secret_password
    -v /opt/seafile-data:/shared
    -p 8080:80
    -p 8443:443
    seafileltd/seafile:latest


    It's running nginx as the webserver, i have the nginx configuration in the docker merged folder, effectively /etc/nginx, but I can't find anywhere the options for configuring the available ciphers.



    grep -i -r "ssl_protocols" /etc/nginx/ returns zero results and after a bunch of digging through google results and bits of documentation I'm no further forward.



    Any thoughts?










    share|improve this question
























      0












      0








      0








      I have just SeaFile running in Docker, scanning the public interface I can see SSLv3 and TLS1.0 are enabled. I'd like to disable them but I'm at a loss as to where that would be configured in this setup.



      I launched the container with



      docker run -d --name seafile 
      -e SEAFILE_SERVER_LETSENCRYPT=true
      -e SEAFILE_SERVER_HOSTNAME=seafile.example.com
      -e SEAFILE_ADMIN_EMAIL=me@example.com
      -e SEAFILE_ADMIN_PASSWORD=a_very_secret_password
      -v /opt/seafile-data:/shared
      -p 8080:80
      -p 8443:443
      seafileltd/seafile:latest


      It's running nginx as the webserver, i have the nginx configuration in the docker merged folder, effectively /etc/nginx, but I can't find anywhere the options for configuring the available ciphers.



      grep -i -r "ssl_protocols" /etc/nginx/ returns zero results and after a bunch of digging through google results and bits of documentation I'm no further forward.



      Any thoughts?










      share|improve this question














      I have just SeaFile running in Docker, scanning the public interface I can see SSLv3 and TLS1.0 are enabled. I'd like to disable them but I'm at a loss as to where that would be configured in this setup.



      I launched the container with



      docker run -d --name seafile 
      -e SEAFILE_SERVER_LETSENCRYPT=true
      -e SEAFILE_SERVER_HOSTNAME=seafile.example.com
      -e SEAFILE_ADMIN_EMAIL=me@example.com
      -e SEAFILE_ADMIN_PASSWORD=a_very_secret_password
      -v /opt/seafile-data:/shared
      -p 8080:80
      -p 8443:443
      seafileltd/seafile:latest


      It's running nginx as the webserver, i have the nginx configuration in the docker merged folder, effectively /etc/nginx, but I can't find anywhere the options for configuring the available ciphers.



      grep -i -r "ssl_protocols" /etc/nginx/ returns zero results and after a bunch of digging through google results and bits of documentation I'm no further forward.



      Any thoughts?







      nginx docker






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 7 at 15:38









      PatrickPatrick

      8911 gold badge11 silver badges34 bronze badges




      8911 gold badge11 silver badges34 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Added the following lines to the seafile.nginx.conf.template file in the image and restarted seafile



          added



          ssl_protocols TLSv1.1 TLSv1.2;
          ssl_prefer_server_ciphers on;


          To the server block immediately before the ssl_ciphers line in the conf file.



          You can locate the path to the conf template with



          /var/lib/docker/>find ./ | grep seafile.nginx.conf.template





          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f970574%2fseafile-docker-disable-ssl-v3%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Added the following lines to the seafile.nginx.conf.template file in the image and restarted seafile



            added



            ssl_protocols TLSv1.1 TLSv1.2;
            ssl_prefer_server_ciphers on;


            To the server block immediately before the ssl_ciphers line in the conf file.



            You can locate the path to the conf template with



            /var/lib/docker/>find ./ | grep seafile.nginx.conf.template





            share|improve this answer



























              0














              Added the following lines to the seafile.nginx.conf.template file in the image and restarted seafile



              added



              ssl_protocols TLSv1.1 TLSv1.2;
              ssl_prefer_server_ciphers on;


              To the server block immediately before the ssl_ciphers line in the conf file.



              You can locate the path to the conf template with



              /var/lib/docker/>find ./ | grep seafile.nginx.conf.template





              share|improve this answer

























                0












                0








                0







                Added the following lines to the seafile.nginx.conf.template file in the image and restarted seafile



                added



                ssl_protocols TLSv1.1 TLSv1.2;
                ssl_prefer_server_ciphers on;


                To the server block immediately before the ssl_ciphers line in the conf file.



                You can locate the path to the conf template with



                /var/lib/docker/>find ./ | grep seafile.nginx.conf.template





                share|improve this answer













                Added the following lines to the seafile.nginx.conf.template file in the image and restarted seafile



                added



                ssl_protocols TLSv1.1 TLSv1.2;
                ssl_prefer_server_ciphers on;


                To the server block immediately before the ssl_ciphers line in the conf file.



                You can locate the path to the conf template with



                /var/lib/docker/>find ./ | grep seafile.nginx.conf.template






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 12 at 9:55









                PatrickPatrick

                8911 gold badge11 silver badges34 bronze badges




                8911 gold badge11 silver badges34 bronze badges



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f970574%2fseafile-docker-disable-ssl-v3%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos