This file contains hidden or 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
| # /opt/homebrew/etc/Caddyfile | |
| http://localhost:8080 { | |
| # Define a matcher for authorized API access | |
| @apiAuth { | |
| header Authorization "Bearer {env.OLLAMA_API_KEY}" | |
| } | |
| # Proxy authorized requests | |
| reverse_proxy @apiAuth http://localhost:11434 { |
This file contains hidden or 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
| version: "3.4" | |
| services: | |
| ros-rviz: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| image: rviz_container:melodic | |
| container_name: rviz_test | |
| network_mode: "host" |