@@ -37,6 +37,13 @@ Create rules to open ports to the internet, or to a specific IPv4 address or ran
3737- [ Manual Configuration and Installation] ( #manual )
3838- [ Portainer Installation] ( #portainer )
3939- [ Usage] ( #usage )
40+ - [Website](#website)
41+ - [Webserver](#webserver)
42+ - [Database](#database)
43+ - [Redis](#redis)
44+ - [Cache](#cache)
45+ - [phpMyAdmin](#phpmyadmin)
46+ - [backup](#backup)
4047
4148## Automatic
4249
@@ -195,7 +202,7 @@ You can now use the `up` command:
195202docker-compose up -d
196203```
197204
198- #### Docker run reference
205+ ### Docker run reference
199206
200207[ https://docs.docker.com/engine/reference/run/ ] ( https://docs.docker.com/engine/reference/run/ )
201208
@@ -207,30 +214,26 @@ You should see the "Laravel" page in your browser. If not, please check if your
207214https://example.com
208215```
209216
210- add or remove code in the ``` ./php-fpm/php/conf.d/security.ini ``` file for custom php.ini configurations
217+ add or remove code in the ./php-fpm/php/conf.d/security.ini file for custom php.ini configurations
211218
212219[ https://www.php.net/manual/en/configuration.file.php ] ( https://www.php.net/manual/en/configuration.file.php )
213220
214- add or remove code in the ``` ./php-fpm/php-fpm.d/z-www.conf ``` file for php-fpm configurations
221+ You should make changes custom host configurations ``` ./php-fpm/php-fpm.d/z-www.conf ``` then must restart service, FPM uses php.ini syntax for its configuration file - php-fpm.conf, and pool configuration files.
215222
216- Or you should make changes custom host configurations then must restart service
223+ [ https://www.php.net/manual/en/install.fpm.configuration.php ] ( https://www.php.net/manual/en/install.fpm.configuration.php )
217224
218225```
219226docker container restart laravel
220227```
221228
222- FPM uses php.ini syntax for its configuration file - php-fpm.conf, and pool configuration files.
223-
224- [ https://www.php.net/manual/en/install.fpm.configuration.php ] ( https://www.php.net/manual/en/install.fpm.configuration.php )
225-
226229add and/or remove laravel site folders and files with any ftp client program in ``` ./laravel/webapp ``` folder.
227230<br />You can also visit ` https://example.com ` to access website after starting the containers.
228231
229232#### Webserver
230233
231234add or remove code in the ``` ./webserver/extra/httpd-ssl.conf ``` file for custom apache2/httpd configurations
232235
233- [ https://httpd.apache.org/docs/2.4/en/configuring.html ] ( https://httpd.apache.org/docs/2.4/en/configuring.html )
236+ [ https://httpd.apache.org/docs/2.4/ ] ( https://httpd.apache.org/docs/2.4/ )
234237
235238#### Database
236239
@@ -242,7 +245,7 @@ Database host = database
242245
243246[ https://mariadb.com/kb/en/configuring-mariadb-with-option-files/ ] ( https://mariadb.com/kb/en/configuring-mariadb-with-option-files/ )
244247
245- #### Redis and Cache
248+ #### Redis
246249
247250You may configure your application's Redis settings via the config/database.php configuration file.
248251
@@ -252,6 +255,8 @@ Redis host port = 6379
252255
253256[ https://laravel.com/docs/9.x/redis ] ( https://laravel.com/docs/9.x/redis )
254257
258+ ### Cache
259+
255260Your application's cache configuration file is located at config/cache.php.
256261
257262[ https://laravel.com/docs/9.x/cache#main-content ] ( https://laravel.com/docs/9.x/cache#main-content )
0 commit comments