Skip to content

Commit 43cf806

Browse files
committed
Update README.md
1 parent 67f18ff commit 43cf806

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

README.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ Create rules to open ports to the internet, or to a specific IPv4 address or ran
3838
- [Manual Configuration and Installation](#manual)
3939
- [Portainer Installation](#portainer)
4040
- [Usage](#usage)
41+
- [Website](#website)
42+
- [Proxy](#proxy)
43+
- [Webserver](#webserver)
44+
- [Database](#database)
45+
- [Redis](#redis)
46+
- [Cache](#cache)
47+
- [phpMyAdmin](#phpmyadmin)
48+
- [backup](#backup)
4149

4250
## Automatic
4351

@@ -197,7 +205,7 @@ You can now use the `up` command:
197205
docker-compose up -d
198206
```
199207

200-
#### Docker run reference
208+
### Docker run reference
201209

202210
[https://docs.docker.com/engine/reference/run/](https://docs.docker.com/engine/reference/run/)
203211

@@ -209,36 +217,34 @@ You should see the "Laravel" page in your browser. If not, please check if your
209217
https://example.com
210218
```
211219

212-
add or remove code in the ```./php-fpm/php/conf.d/security.ini``` file for custom php.ini configurations
220+
add or remove code in the ./php-fpm/php/conf.d/security.ini file for custom php.ini configurations
213221

214222
[https://www.php.net/manual/en/configuration.file.php](https://www.php.net/manual/en/configuration.file.php)
215223

216-
add or remove code in the ```./php-fpm/php-fpm.d/z-www.conf``` file for php-fpm configurations
224+
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.
217225

218-
Or you should make changes custom host configurations then must restart service
226+
[https://www.php.net/manual/en/install.fpm.configuration.php](https://www.php.net/manual/en/install.fpm.configuration.php)
219227

220228
```
221229
docker container restart laravel
222230
```
223231

224-
FPM uses php.ini syntax for its configuration file - php-fpm.conf, and pool configuration files.
225-
226-
[https://www.php.net/manual/en/install.fpm.configuration.php](https://www.php.net/manual/en/install.fpm.configuration.php)
227-
228232
add and/or remove laravel site folders and files with any ftp client program in ```./laravel/webapp``` folder.
229233
<br />You can also visit `https://example.com` to access website after starting the containers.
230234

231235
#### Proxy
232236

233237
Proxying is typically used to distribute the load among several servers, seamlessly show content from different websites, or pass requests for processing to application servers over protocols other than HTTP.
234238

239+
add or remove code in the ```./proxy/templates/proxy.conf.template``` file for custom proxy configurations
240+
235241
[https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/)
236242

237243
#### Webserver
238244

239245
add or remove code in the ```./webserver/extra/httpd-vhosts.conf``` file for custom apache2/httpd configurations
240246

241-
[https://httpd.apache.org/docs/2.4/en/configuring.html](https://httpd.apache.org/docs/2.4/en/configuring.html)
247+
[https://httpd.apache.org/docs/2.4/](https://httpd.apache.org/docs/2.4/)
242248

243249
#### Database
244250

@@ -250,7 +256,7 @@ Database host = database
250256

251257
[https://mariadb.com/kb/en/configuring-mariadb-with-option-files/](https://mariadb.com/kb/en/configuring-mariadb-with-option-files/)
252258

253-
#### Redis and Cache
259+
#### Redis
254260

255261
You may configure your application's Redis settings via the config/database.php configuration file.
256262

@@ -260,6 +266,8 @@ Redis host port = 6379
260266

261267
[https://laravel.com/docs/9.x/redis](https://laravel.com/docs/9.x/redis)
262268

269+
#### Cache
270+
263271
Your application's cache configuration file is located at config/cache.php.
264272

265273
[https://laravel.com/docs/9.x/cache#main-content](https://laravel.com/docs/9.x/cache#main-content)

0 commit comments

Comments
 (0)