sashabo/nginx-conf-parser
Composer 安装命令:
composer require sashabo/nginx-conf-parser
包简介
Parsing nginx.conf files and following includes
README 文档
README
A PHP library for parsing nginx.conf files. No dependencies.
Installation
composer require sashabo/nginx-conf-parser
Usage
To parse nginx.conf from string use static method:
SashaBo\NginxConfParser\Parser::parseString(string $source): array
To parse from file:
SashaBo\NginxConfParser\Parser::parseFile(string $path, bool $followIncludes = false): array
Both return array<SashaBo\NginxConfParser\Row>:
class Row { public readonly string $name; /** @var array<string> */ public readonly array $values; /** @var array<self> */ public readonly array $rows; public readonly ?string $file; /** @var non-negative-int */ public readonly int $position; /** @var non-negative-int */ public readonly int $line; /** @var non-negative-int */ public readonly int $linePosition; /** @var positive-int */ public readonly int $length; }
name - the name of nginx.conf parameter.
values - an array or words going after the name. For example:
name: 'server_name'
values: ['my-domain.com', 'my-alias.com']
rows - an array of rows in {...}.
So, a row with name 'http' contains rows with name 'server', and they - rows with name 'location'.
position, line and linePosition start from 0. For the 'server_name'
nginx parameter these three values describe the position of 's' symbol.
length is counted from the first symbol of the name ('s' for
'server_name') to the ';' or '}' symbol including them. So you can use
position and length to remove or replace the whole nginx parameter or
the block of parameters with substr_replace, and your nginx.conf will be
still valid.
Behavior
The parser doesn't interpret nginx.conf data, just parses. It knows nothing about nginx parameters, just follows the syntax. If your nginx.conf file contains wrong data, the parser won't throw exceptions while the structure of the file is correct.
The only command the parser understands is include if $followIncludes
is true. In this case, parser will parse also included file (or few files
if there is a pattern like sites-enabled/*.conf) and replace the
include row with rows from the included file.
Composing nginx.conf
The package contains a tool for composing parsed (or generated) data back
to nginx.conf file. To do this, use static method
SashaBo\NginxConfParser\Composer::compose(array $rows): string
Searching parameters in nginx.conf
Since 1.2.0 the package contains Finder class with these methods:
class Finder { /** * @param array<Row> $rows * @return array<Row> */ public static function findByName(array $rows, string $name): array /** * @param array<Row> $rows * @return ?Row */ public static function findOneByName(array $rows, string $name): ?Row /** * @param array<Row> $rows * @param array<string> $path * @return array<Row> */ public static function findByPath(array $rows, array $path): array /** * @param array<Row> $rows * @param array<string> $path * @return ?Row */ public static function findOneByPath(array $rows, array $path): ?Row }
Using variables
Since 1.2.0 the package contains VariableReplacer class with these methods:
class VariableReplacer { public const MISSED_SET_EMPTY = 'set-empty'; public const MISSED_IGNORE = 'ignore'; public const MISSED_THROW_EXCEPTION = 'exception'; /** * @param array<Row> $rows * @param array<string, string> $variables * @return array<Row> */ public static function replace(array $rows, array $variables, string $missedMode = self::MISSED_IGNORE): array public static function replaceRow(Row $row, array $variables, string $missedMode = self::MISSED_IGNORE): Row }
Example:
server {
listen $server_port;
root $server_root;
location / {
try_files $uri @php;
}
location @php {
include fastcgi.conf;
fastcgi_pass localhost:9000;
fastcgi_param SCRIPT_FILENAME /app/app.php;
}
}
$rows = VariableReplacer::replace( Parser::parseFile('/etc/nginx/nginx.conf'), [ 'server_port' => 80, 'server_root' => '/app/public' ] );
sashabo/nginx-conf-parser 适用场景与选型建议
sashabo/nginx-conf-parser 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.2k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2024 年 01 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 sashabo/nginx-conf-parser 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sashabo/nginx-conf-parser 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-18