(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| user nginx; | |
| worker_processes auto; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| use epoll; | |
| multi_accept on; | |
| } |
| server { | |
| listen 443 ssl http2 default_server; | |
| listen [::]:443 ssl http2 default_server; | |
| server_name domain.com www.domain.com; | |
| ssl on; | |
| ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem; | |
| ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem; | |
| ssl_session_timeout 1d; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.