@@ -37,6 +37,11 @@ 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+ - [Redis](#redis)
43+ - [phpMyAdmin](#phpmyadmin)
44+ - [backup](#backup)
4045
4146## Automatic
4247
@@ -195,7 +200,7 @@ You can now use the `up` command:
195200docker-compose up -d
196201```
197202
198- #### Docker run reference
203+ ### Docker run reference
199204
200205[ https://docs.docker.com/engine/reference/run/ ] ( https://docs.docker.com/engine/reference/run/ )
201206
@@ -207,22 +212,18 @@ You should see the "Laravel" page in your browser. If not, please check if your
207212https://example.com
208213```
209214
210- add or remove code in the ``` ./php-fpm/php/conf.d/security.ini ``` file for custom php.ini configurations
215+ add or remove code in the ./php-fpm/php/conf.d/security.ini file for custom php.ini configurations
211216
212217[ https://www.php.net/manual/en/configuration.file.php ] ( https://www.php.net/manual/en/configuration.file.php )
213218
214- add or remove code in the ``` ./php-fpm/php-fpm.d/z-www.conf ``` file for php-fpm configurations
219+ 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.
215220
216- Or you should make changes custom host configurations then must restart service
221+ [ https://www.php.net/manual/en/install.fpm.configuration.php ] ( https://www.php.net/manual/en/install.fpm.configuration.php )
217222
218223```
219224docker container restart laravel
220225```
221226
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-
226227add and/or remove laravel site folders and files with any ftp client program in ``` ./laravel/webapp ``` folder.
227228<br />You can also visit ` https://example.com ` to access website after starting the containers.
228229
@@ -242,7 +243,7 @@ Database host = database
242243
243244[ https://mariadb.com/kb/en/configuring-mariadb-with-option-files/ ] ( https://mariadb.com/kb/en/configuring-mariadb-with-option-files/ )
244245
245- #### Redis and Cache
246+ #### Redis
246247
247248You may configure your application's Redis settings via the config/database.php configuration file.
248249
@@ -252,6 +253,8 @@ Redis host port = 6379
252253
253254[ https://laravel.com/docs/9.x/redis ] ( https://laravel.com/docs/9.x/redis )
254255
256+ #### Cache
257+
255258Your application's cache configuration file is located at config/cache.php.
256259
257260[ https://laravel.com/docs/9.x/cache#main-content ] ( https://laravel.com/docs/9.x/cache#main-content )
0 commit comments