opencode-dashboard / nginx.conf
OcDash Deploy
fix: nginx port 8080, simpler Dockerfile
7ca74b8
Raw
History Blame Contribute Delete
147 Bytes
server {
listen 8080;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}