Tag Archive For "reverse proxy"
Nginx > SSL > Tomcat
Merhabalar, tomcat’in SSL yapilandirmasini yapmaktansa Nginx uzerinden yapmayi tercih ederim. 🙂 Calismasi : Internet > Nginx_SSL > Tomcat Yapilandirma dosyasi (kendime ait) : vim /etc/nginx/conf/murat.conf server { listen 80; return 301 https://$host$request_uri; #http > https yonlendirmesi } #https yapilandirmasi server { listen 443; server_name murat.ws; ssl_certificate /etc/nginx/ssl/muratws.crt; ssl_certificate_key /etc/nginx/ssl/muratws.key; ssl on; location / { proxy_redirect off; proxy_set_header …
Nginx – Tomcat7 Reverse Proxy Konfigurasyonu
Merhaba, bu yazi size nginx reverse proxy ile trafiginizi 80. porttan 8080 portuna nasil yonlendirme yapilacagini anlatmaktadir. (Tomcat sunucunuzu hangi porttan calistiriyorsaniz 8080 yerine o portu yazmalisiniz.) Debian 7.6 uzerinde nginx 1.8.0-1 ve tomcat 7.0.28 kuruludur.