diff --git a/docker/conf/applications/gitlab.c2a-systeme.fr.conf b/docker/conf/applications/gitlab.c2a-systeme.fr.conf index 5c6b8c9..6e973ce 100644 --- a/docker/conf/applications/gitlab.c2a-systeme.fr.conf +++ b/docker/conf/applications/gitlab.c2a-systeme.fr.conf @@ -1,4 +1,5 @@ # http://nginx.org/en/docs/http/websocket.html +# http://nginx.org/en/docs/http/websocket.html map $http_upgrade $connection_upgrade { default upgrade; '' close; @@ -84,9 +85,10 @@ server { # Disable check to allow unlimited body sizes. this allows apps to accept whatever size they want client_max_body_size 0; - # location = /robots.txt { - # return 200 ""; - # } + # Bloc accès of the search robots + location = /robots.txt { + return 200 "User-agent: *\nDisallow: /"; + } proxy_pass http://127.0.0.1:8001; diff --git a/docker/conf/applications/jenkins.c2a-systeme.fr.conf b/docker/conf/applications/jenkins.c2a-systeme.fr.conf index ff2dd20..1e0e82b 100644 --- a/docker/conf/applications/jenkins.c2a-systeme.fr.conf +++ b/docker/conf/applications/jenkins.c2a-systeme.fr.conf @@ -84,9 +84,10 @@ server { # Disable check to allow unlimited body sizes. this allows apps to accept whatever size they want client_max_body_size 0; - # location = /robots.txt { - # return 200 ""; - # } + # Bloc accès of the search robots + location = /robots.txt { + return 200 "User-agent: *\nDisallow: /"; + } proxy_pass http://127.0.0.1:8002; diff --git a/docker/conf/applications/portainer.c2a-systeme.fr.conf b/docker/conf/applications/portainer.c2a-systeme.fr.conf index 81d0db5..2c1b0bf 100644 --- a/docker/conf/applications/portainer.c2a-systeme.fr.conf +++ b/docker/conf/applications/portainer.c2a-systeme.fr.conf @@ -84,9 +84,10 @@ server { # Disable check to allow unlimited body sizes. this allows apps to accept whatever size they want client_max_body_size 0; - # location = /robots.txt { - # return 200 ""; - # } + # Bloc accès of the search robots + location = /robots.txt { + return 200 "User-agent: *\nDisallow: /"; + } proxy_pass http://127.0.0.1:8003; diff --git a/docker/conf/applications/www.c2a-systeme.fr.conf b/docker/conf/applications/www.c2a-systeme.fr.conf new file mode 100644 index 0000000..b858bea --- /dev/null +++ b/docker/conf/applications/www.c2a-systeme.fr.conf @@ -0,0 +1,52 @@ +# http://nginx.org/en/docs/http/websocket.html +# http://nginx.org/en/docs/http/websocket.html +map $http_upgrade $connection_upgrade { + default upgrade; + '' close; +} + +# http server +server { + listen 80; + listen [::]:80; + + server_name www.c2a-systeme.fr; + + location / { + # redirect everything to HTTPS + return 301 https://$host$request_uri; + } +} + +# https server +server { + server_name www.c2a-systeme.fr; + listen 443 http2; + listen [::]:443 http2; + + ssl on; + # paths are relative to prefix and not to this file + ssl_certificate /etc/letsencrypt/live/www.c2a-systeme.fr/cert.pem; + ssl_certificate_key /etc/letsencrypt/live/www.c2a-systeme.fr/privkey.pem; + ssl_session_timeout 5m; + ssl_session_cache shared:SSL:50m; + + # https://bettercrypto.org/static/applied-crypto-hardening.pdf + # https://mozilla.github.io/server-side-tls/ssl-config-generator/ + # https://cipherli.st/ + # https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html + ssl_prefer_server_ciphers on; + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # don't use SSLv3 ref: POODLE + + # ciphers according to https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=nginx-1.10.3&openssl=1.0.2g&hsts=yes&profile=modern + ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256'; + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; + add_header Strict-Transport-Security "max-age=15768000"; + + root /var/www/html/c2a-web-platform; + index index.html; + + location / { + try_files $uri $uri/ /index.html =404; + } +} diff --git a/docker/install-sdk.sh b/docker/install-sdk.sh index 25d82c7..0be3a02 100644 --- a/docker/install-sdk.sh +++ b/docker/install-sdk.sh @@ -6,4 +6,8 @@ rm /root/sdk-tools-linux-4333796.zip yes | ./tools/bin/sdkmanager --licenses yes | ./tools/bin/sdkmanager "platforms;android-28" --sdk_root=/opt/android-sdk - \ No newline at end of file + +apt-get update +apt-get install -y curl +curl -sL https://deb.nodesource.com/setup_10.x | bash - +apt-get install -y nodejs