mirror of
https://github.com/penpot/penpot.git
synced 2026-08-09 14:28:55 +00:00
8 lines
268 B
Plaintext
8 lines
268 B
Plaintext
location /admin-console {
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $http_cf_connecting_ip;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_pass $PENPOT_ADMIN_CONSOLE_URI$request_uri;
|
|
}
|