6 lines
248 B
Bash
6 lines
248 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
/app/tailscaled --state=/var/lib/tailscale/tailscaled.state --socket=/var/run/tailscale/tailscaled.sock &
|
||
|
/app/tailscale up --authkey=${TAILSCALE_AUTHKEY} --hostname=reverseproxy
|
||
|
/usr/sbin/nginx -c /etc/nginx/nginx.conf -g 'daemon off;'
|