Does AW support SSL and/or reverse proxying?
Not yet. Currently we recommend reverse proxying SSL connections to Antiweb with nginx. Eventually Antiweb will be both SSL capable and able to reverse proxy SSL. Here is an nginx conf file that can be used for reverse proxying SSL (probably includes some things you don’t need): user nginx; worker_processes 1; events { worker_connections 1024; } http { keepalive_timeout 65; gzip on; gzip_proxied any; gzip_types application/x-javascript; server { listen 443; server_name example.com; ssl on; ssl_certificate /etc/ssl/certs/example.crt; ssl_certificate_key /etc/ssl/private/example.key; location / { proxy_buffer_size 256k; proxy_buffers 8 256k; proxy_pass http://example.com; proxy_set_header X-Real-IP $remote_addr; } } } In order to log the IP addresses of clients, you should use the :accept-x-real-ip xconf for all workers that handle proxied connections.