Я новичок в nginx и почитаю прокси.У меня есть машина с Ubuntu, на которой запущен nginx, и давайте зашифруем на xxx.com.Мое приложение tomcat tomcat работает на http://example.com:8080 или http://ip:8080
Теперь я хочу, чтобы мое приложение работало после нажатия / и все с помощью ssl (давайте зашифруем).Я пробовал пару дней, но не смог настроить и запустить.
server {
listen 80;
return 301 https://$host$request_uri;
}
server {
listen 443;
server_name linuxtechlab.com;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
ssl on;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/access.log;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:8080;
proxy_read_timeout 90;
proxy_redirect http://localhost:8080 https://example.com;
}
}
Я ценю вашу поддержку гуру.