This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Chrome has a bug and the rpi needs a few extra flags set. This solved it for me: | |
Add Drivers: | |
```sudo nano /etc/modules``` | |
```i2c-dev``` | |
```snd-bcm2835``` | |
```bcm2835-v4l2``` | |
Add extra V4l2 video driver flag (for Chromium to pick up the camera): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map $http_upgrade $type { | |
default "frontend"; | |
websocket "ws"; | |
} | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name test.project.com; | |
root /var/www/html/frontend/dist/project-frontend; |