```conf
worker_processes auto;
worker_shutdown_timeout 30s;
worker_rlimit_core 50M;
working_directory /tmp/;
worker_rlimit_nofile 10240;
events
{
worker_connections 10240;
worker_aio_requests 1024;
}
http
{
include mime.types;
default_type application/octet-stream;
charset utf-8;
autoindex off;
autoindex_exact_size on;
autoindex_localtime on;
include gzip.conf;
sendfile on;
server_tokens off;
fastcgi_hide_header X-Powered-By;
proxy_hide_header X-Powered-By;
ssl_protocols TLSv1.3;
add_header X-Frame-Options sameorigin always;
include limit_req_http.conf;
server
{
listen 80;
server_name php8.1.nginx.com;
root /server/default;
access_log /server/logs/nginx/localhost.log;
index index.php;
allow 192.168.0.0/16;
deny all;
if ($request_method !~* GET|POST)
{
return 403;
}
include cache.conf;
location / {
include limit_req_server.conf;
}
location ~ \.php
{
fastcgi_pass unix:/server/run/php/phpfpm8.1-default.sock;
include fastcgi.conf;
}
location ~ /\.
{
deny all;
}
}
server
{
listen 80;
server_name php8.0.nginx.com;
root /server/default;
access_log /server/logs/nginx/localhost.log;
index index.php;
allow 192.168.10.0/24;
deny all;
if ($request_method !~* GET|POST)
{
return 403;
}
include cache.conf;
location / {
include limit_req_server.conf;
}
location ~ \.php
{
fastcgi_pass unix:/server/run/php/phpfpm8.0-default.sock;
include fastcgi.conf;
}
location ~ /\.
{
deny all;
}
}
include /server/sites/*.conf;
include /server/sites/*.nginx;
}
```
- Nginx 篇
- php 多版本
- 主配置文件
- 静态站点配置模版
- tp6 站点的模版
- php 单版本
- 主配置文件
- 静态站点配置模版
- tp6 站点的模版
- 静态文件启用压缩
- 限制请求-http 块
- 限制请求-server 块
- 缓存配置文件
- tp6 站点的 fastcgi 模版
- MariaDB 篇
- MariaDB 主配置文件
- MariaDB 服务端子配置文件
- MariaDB 密钥
- redis 篇
- sqlite3 篇
- php
- PHP 单版本篇
- PHP 多版本篇(new)
- php-fpm 主配置文件(php 单版本)
- php-fpm 工作池配置文件(php 单版本)
- '8.0(php 多版本)'
- php-fpm 主配置文件
- php-fpm 工作池进程配置文件
- '8.1(php 多版本)'
- php-fpm 主配置文件
- php-fpm 工作池进程配置文件
- service
- Nginx 系统单元文件
- MariaDB 系统单元文件
- redis 系统单元文件
- php-fpm 系统单元文件(php 单版本)
- phpfpm-8.0 系统单元文件(php 多版本)
- phpfpm-8.1 系统单元文件(php 多版本)
- vsftpd 篇
- pam-mysql 配置文件
- vsftpd 配置文件
- sh
- 删除 lnmp 目录脚本
- 创建 lnmp 目录脚本
- 解压 lnmp 安装包脚本