Skip to content

Instantly share code, notes, and snippets.

View argael's full-sized avatar

Thierry Lagasse argael

  • AARDEX Group
  • Liège, BE
View GitHub Profile
@randy3k
randy3k / octopi
Last active June 9, 2024 12:02
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;