friendica-github/bin/daemon.php

35 lines
842 B
PHP
Raw Normal View History

2022-05-20 22:52:44 +00:00
#!/usr/bin/env php
<?php
2016-11-27 22:52:21 +00:00
/**
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
2022-05-20 04:52:18 +00:00
*/
/**
2020-01-19 20:44:01 +00:00
* Run the worker from a daemon.
2022-05-20 22:52:44 +00:00
*
2016-11-27 22:52:21 +00:00
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
*/
if (php_sapi_name() !== 'cli') {
2022-06-22 23:46:37 +00:00
header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
exit();
}
2019-08-05 07:02:55 +00:00
use Dice\Dice;
// Get options
2024-12-26 09:24:12 +00:00
$options = getopt('f', ['foreground']);
// Ensure that daemon.php is executed from the base path of the installation
2024-12-26 09:05:50 +00:00
chdir(dirname(__DIR__));
require dirname(__DIR__) . '/vendor/autoload.php';
$dice = (new Dice())->addRules(require(dirname(__DIR__) . '/static/dependencies.config.php'));
$app = \Friendica\App::fromDice($dice);
2024-12-26 12:18:03 +00:00
$app->processDaemon($_SERVER['argv'] ?? [], $options ?: []);