Skip to content

Instantly share code, notes, and snippets.

View argael's full-sized avatar

Thierry Lagasse argael

View GitHub Profile
@randy3k
randy3k / octopi
Last active January 29, 2024 15:44
octopi/octoprint config for nginx proxy manager
location ~ ^/webcam/(.*) {
rewrite ^/webcam/(.*) /octopi/webcam/$1 redirect;
}
location /octopi/ {
if ($scheme != "https") {
rewrite ^ https://$host$uri permanent;
}
rewrite ^/octopi/(.*)$ /$1 break;
proxy_pass http://192.168.0.167;