Skip to content

Commit

Permalink
Don't use SSL, JunOS don't support it.
Browse files Browse the repository at this point in the history
  • Loading branch information
krihal committed Sep 24, 2024
1 parent a2d7802 commit 002085a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
Binary file removed data.txt.gz
Binary file not shown.
5 changes: 1 addition & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ services:
app:
build: app/
environment:
- GIT_REPO_URL=ssh://git@platform.sunet.se:22022/khn/configtest.git
- GIT_REPO_URL=ssh://git@git.example.com/repo.git
volumes:
- ~/.ssh:/root/.ssh
nginx:
build: nginx/
ports:
- "80:80"
- "443:443"
volumes:
- /etc/letsencrypt/archive/zoomie.sunet.se/:/ssl
8 changes: 0 additions & 8 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@ events {
http {
server {
listen 80;
listen 443 default_server ssl;

ssl_certificate /ssl/fullchain1.pem;
ssl_certificate_key /ssl/privkey1.pem;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
ssl_prefer_server_ciphers on;

location / {
proxy_pass http://app:8080;
Expand Down

0 comments on commit 002085a

Please sign in to comment.