NGINX Proxy Example

server {
    listen 80;
    server_name example.org;
 
    real_ip_header CF-Connecting-IP;
 
    location / {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_ssl_verify off;
        proxy_pass http://example.com/;
    }
 
}