diff --git a/.env b/.env deleted file mode 100644 index 156494a..0000000 --- a/.env +++ /dev/null @@ -1,71 +0,0 @@ -APP_NAME=Nyone -APP_ENV=local -APP_KEY=base64:rP7gYYimAr1h2vZz+TM7blJMd8ZDDqnhQ78b+seJeYY= -APP_DEBUG=true -APP_URL=http://localhost:8001 - -APP_LOCALE=en -APP_FALLBACK_LOCALE=en -APP_FAKER_LOCALE=en_US - -APP_MAINTENANCE_DRIVER=file -# APP_MAINTENANCE_STORE=database - -# PHP_CLI_SERVER_WORKERS=4 - -BCRYPT_ROUNDS=12 - -LOG_CHANNEL=stack -LOG_STACK=single -LOG_DEPRECATIONS_CHANNEL=null -LOG_LEVEL=debug - -DB_CONNECTION=sqlite -DB_HOST=127.0.0.1 -DB_PORT=5432 -DB_DATABASE=database/database.sqlite -DB_USERNAME=root -DB_PASSWORD= - -SESSION_DRIVER=database -SESSION_LIFETIME=120 -SESSION_ENCRYPT=false -SESSION_PATH=/ -SESSION_DOMAIN=null - -BROADCAST_CONNECTION=log -FILESYSTEM_DISK=local -QUEUE_CONNECTION=database - -CACHE_STORE=database -# CACHE_PREFIX= - -MEMCACHED_HOST=127.0.0.1 - -REDIS_CLIENT=phpredis -REDIS_HOST=127.0.0.1 -REDIS_PASSWORD=null -REDIS_PORT=6379 - -MAIL_MAILER=log -MAIL_SCHEME=null -MAIL_HOST=127.0.0.1 -MAIL_PORT=2525 -MAIL_USERNAME=null -MAIL_PASSWORD=null -MAIL_FROM_ADDRESS="hello@example.com" -MAIL_FROM_NAME="${APP_NAME}" - -AWS_ACCESS_KEY_ID= -AWS_SECRET_ACCESS_KEY= -AWS_DEFAULT_REGION=us-east-1 -AWS_BUCKET= -AWS_USE_PATH_STYLE_ENDPOINT=false - -VITE_APP_NAME="${APP_NAME}" - -STREAMING_RTMP_INGEST_URL=rtmp://localhost:19935 -STREAMING_HLS_PUBLIC_URL=http://localhost:19988 -STREAMING_VOD_RETENTION_DAYS=30 -STREAMING_RECORDINGS_PATH=storage/app/private/recordings -MEDIAMTX_SHARED_SECRET=change-this-secret diff --git a/deploy/mediamtx.yml.example b/deploy/mediamtx.yml.example deleted file mode 100644 index f3df484..0000000 --- a/deploy/mediamtx.yml.example +++ /dev/null @@ -1,31 +0,0 @@ -authMethod: http -authHTTPAddress: http://127.0.0.1:8001/internal/mediamtx/auth?secret=change-this-secret -authHTTPExclude: - - action: read - - action: playback - - action: api - - action: metrics - - action: pprof - -rtmp: yes -rtmpAddress: :19935 - -hls: yes -hlsAddress: :19988 -hlsVariant: mpegts -hlsAllowOrigins: - - http://127.0.0.1:8001 - - http://localhost:8001 - -record: yes -recordPath: ./storage/app/private/recordings/%path/%Y-%m-%d_%H-%M-%S-%f - -pathDefaults: - runOnReady: curl -X POST "http://127.0.0.1:8001/internal/mediamtx/ready?secret=change-this-secret" --data-urlencode "path=$MTX_PATH" --data-urlencode "source_type=$MTX_SOURCE_TYPE" --data-urlencode "source_id=$MTX_SOURCE_ID" - runOnReadyRestart: no - runOnNotReady: curl -X POST "http://127.0.0.1:8001/internal/mediamtx/not-ready?secret=change-this-secret" --data-urlencode "path=$MTX_PATH" --data-urlencode "source_type=$MTX_SOURCE_TYPE" --data-urlencode "source_id=$MTX_SOURCE_ID" - runOnRecordSegmentComplete: curl -X POST "http://127.0.0.1:8001/internal/mediamtx/recording-complete?secret=change-this-secret" --data-urlencode "path=$MTX_PATH" --data-urlencode "segment_path=$MTX_SEGMENT_PATH" --data-urlencode "duration=$MTX_SEGMENT_DURATION" - -paths: - all_others: - source: publisher