This commit is contained in:
Your Name
2026-03-01 14:17:59 +08:00
parent 65aa12f146
commit a07e844c47
6071 changed files with 777651 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/data
/log
+31
View File
@@ -0,0 +1,31 @@
# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# The MySQL Server configuration file.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
[mysqld]
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
datadir = /var/lib/mysql
log-error = /var/log/mysql/error.log
# By default we only accept connections from localhost
#bind-address = 127.0.0.1
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
max_connections=1000
@@ -0,0 +1,35 @@
server {
listen 80;
server_name www.likeadmin.host;
access_log /logs/www.likeadmin.host_access_nginx.log;
error_log /logs/www.likeadmin.host_error_nginx.log;
client_max_body_size 5M;
location / {
root /likeadmin_php/server/public;
index index.html index.htm index.php;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?s=$1 last;
break;
}
}
location ~ /.*\.php/ {
rewrite ^(.*?/?)(.*\.php)(.*)$ /$2?s=$3 last;
break;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}
location ~ \.php$ {
fastcgi_pass likeadmin-php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /likeadmin_php/server/public$fastcgi_script_name;
include fastcgi_params;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
}
+42
View File
@@ -0,0 +1,42 @@
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
location / {
return 404;
}
}
include /etc/nginx/conf.d/company/*.conf;
include /etc/nginx/conf.d/my/*.conf;
include /etc/nginx/conf.d/product/*.conf;
include /etc/nginx/conf.d/project/*.conf;
}
+1
View File
@@ -0,0 +1 @@
upload_max_filesize = 5M
+67
View File
@@ -0,0 +1,67 @@
version: '3'
networks:
likeadmin:
driver: bridge
services:
nginx:
container_name: likeadmin-nginx
image: registry.cn-guangzhou.aliyuncs.com/likeadmin/nginx:1.23.1
restart: always
depends_on:
- "php"
volumes:
- ../server:/likeadmin_php/server
- ./config/nginx/conf.d:/etc/nginx/conf.d
- ./log/nginx/logs:/logs
networks:
- likeadmin
ports:
- "80:80"
php:
container_name: likeadmin-php
image: registry.cn-guangzhou.aliyuncs.com/likeadmin/php:8.0.30.3-fpm
restart: always
working_dir: /likeadmin_php/server
volumes:
- ../server:/likeadmin_php/server
networks:
- likeadmin
ports:
- "9000:9000"
#user: "1000:1000"
mysql:
container_name: likeadmin-mysql
image: registry.cn-guangzhou.aliyuncs.com/likeadmin/mysql:5.7.44 #X86架构
#image: registry.cn-guangzhou.aliyuncs.com/likeadmin/mysql:5.7.29-amd64 #arm架构
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
volumes:
- ./data/mysql5.7.29/lib:/var/lib/mysql
- ./config/mysql/mysqld.cnf:/etc/mysql/my.cnf
networks:
- likeadmin
ports:
- "3306:3306"
redis:
container_name: likeadmin-redis
image: registry.cn-guangzhou.aliyuncs.com/likeadmin/redis:7.4.0
restart: always
volumes:
- ./data/redis:/data
networks:
- likeadmin
ports:
- "6379:6379"