ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
, то ssl3 отключен. Точка.sudo service nginx reload
). А если перезагрузили, то, наверное, в конфиге есть ошибки и он не применился (проверка: sudo service nginx configtest
).openssl s_client -connect ... -ssl3
sudo service nginx configtest
location ~* \.(?:css|js)$ {
expires 1y;
access_log off;
add_header Cache-Control "public";
}
proxy_pass http://127.0.0.1:8080/;
curl -sS --include --location --output result.html 'http://domain.com/'
HTTP/1.1 301 Moved Permanently
Server: nginx/1.6.2
...
Location: http://www.example.org/wiki/%D0%A2%D0%B0%D0%B9%D0%BC%D1%8B%D1%80%20(%D0%BF%D0%BE%D0%BB%D1%83%D0%BE%D1%81%D1%82%D1%80%D0%BE%D0%B2)
location / {
proxy_pass http://localhost:8080/m/;
...
}
location /public/mobile/ {
proxy_pass http://localhost:8080;
...
}