Skip to content

Commit

Permalink
start
Browse files Browse the repository at this point in the history
  • Loading branch information
DANPaRUS committed Aug 29, 2023
0 parents commit 587d9e5
Show file tree
Hide file tree
Showing 86 changed files with 15,152 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .docker/apache/vhost.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<VirtualHost 127.0.0.1:80>

DocumentRoot “/var/www/html/public”
DirectoryIndex index.php
ServerName localhost

<Directory “/var/www/html/public”>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>

</VirtualHost>
34 changes: 34 additions & 0 deletions .docker/mysql/my.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
language = /usr/share/mysql/english
old_passwords = 0
bind-address = 127.0.0.1
skip-external-locking
max_allowed_packet = 16M
key_buffer_size = 16M
innodb_buffer_pool_size = 2048M
innodb_file_per_table = 1
innodb_flush_method = O_DIRECT
innodb_flush_log_at_trx_commit = 0
max_connections = 144
query_cache_size = 0
slow_query_log = /var/log/mysql/mysql-slow.log
long_query_time = 1
expire_logs_days = 10
max_binlog_size = 100M
[mysqldump]
quick
quote-names
max_allowed_packet = 200M
1 change: 1 addition & 0 deletions .docker/php/ini/conf.d/memory_limit.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
memory_limit = -1
Loading

0 comments on commit 587d9e5

Please sign in to comment.