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;
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
add a comment |
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
add a comment |
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
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
nginx docker
asked Jun 7 at 15:38
PatrickPatrick
8911 gold badge11 silver badges34 bronze badges
8911 gold badge11 silver badges34 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered Jun 12 at 9:55
PatrickPatrick
8911 gold badge11 silver badges34 bronze badges
8911 gold badge11 silver badges34 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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