I am slowly moving content from Notion to this Wiki. Some things will be missing!
Where necessary, the organisational structure and information will be updated.

Tom's Wiki

Forget-me-not

User Tools

Site Tools


You are not allowed to perform this action
lab:docs:g:nginx-proxy-vhost

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/;
    }
 
}
lab/docs/g/nginx-proxy-vhost.txt · Last modified: Tue 12 Mar 2024 (22:26) by 127.0.0.1