You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
###I see "Welcome to nginx" instead of the Laravel App!
1382
+
## I see "Welcome to nginx" instead of the Laravel App!
1381
1383
1382
1384
Use `http://127.0.0.1` instead of `http://localhost` in your browser.
1383
1385
@@ -1386,7 +1388,7 @@ Use `http://127.0.0.1` instead of `http://localhost` in your browser.
1386
1388
1387
1389
1388
1390
<br>
1389
-
###I see an error message containing `address already in use` or `port is already allocated`
1391
+
## I see an error message containing `address already in use` or `port is already allocated`
1390
1392
1391
1393
Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in `apache`/`httpd` service or other development tools you have installed.
1392
1394
@@ -1395,7 +1397,7 @@ Make sure the ports for the services that you are trying to run (22, 80, 443, 33
1395
1397
1396
1398
1397
1399
<br>
1398
-
###I get NGINX error 404 Not Found on Windows.
1400
+
## I get NGINX error 404 Not Found on Windows.
1399
1401
1400
1402
1. Go to docker Settings on your Windows machine.
1401
1403
2. Click on the `Shared Drives` tab and check the drive that contains your project files.
@@ -1405,16 +1407,19 @@ Make sure the ports for the services that you are trying to run (22, 80, 443, 33
1405
1407
1406
1408
1407
1409
1410
+
1408
1411
<br>
1409
-
###The time in my services does not match the current time
1412
+
## The time in my services does not match the current time
1410
1413
1411
1414
1. Make sure you've [changed the timezone](#Change-the-timezone).
1412
1415
2. Stop and rebuild the containers (`docker-compose up -d --build <services>`)
1413
1416
1414
1417
1415
1418
1419
+
1420
+
1416
1421
<br>
1417
-
###I get MySQL connection refused
1422
+
## I get MySQL connection refused
1418
1423
1419
1424
This error sometimes happens because your Laravel application isn't running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:
1420
1425
@@ -1423,9 +1428,3 @@ This error sometimes happens because your Laravel application isn't running on t
1423
1428
2. Change the `DB_HOST` variable on env with the IP that you received from previous step.
1424
1429
* Option B
1425
1430
1. Change the `DB_HOST` value to the same name as the MySQL docker container. The LaraDock docker-compose file currently has this as `mysql`
Copy file name to clipboardExpand all lines: docs/_settings/content/help/index.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,4 +7,3 @@ weight: 5
7
7
Join the chat room on [Gitter](https://gitter.im/LaraDock/laradock) and get help and support from the community.
8
8
9
9
You can as well can open an [issue](https://github.com/laradock/laradock/issues) on Github (will be labeled as Question) and discuss it with people on [Gitter](https://gitter.im/LaraDock/laradock).
Copy file name to clipboardExpand all lines: docs/contributing/index.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ submitting an <a href="https://github.com/laradock/laradock/issues"&g
74
74
<li><p>Edit the files you want to update.</p></li>
75
75
76
76
<li><p><strong>Note:</strong> If you want to edit the base image of the <code>Workspace</code> or the <code>php-fpm</code> Containers,
77
-
you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
77
+
you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
78
78
79
79
<li><p>Make sure to update the <code>Readme</code> in case you made any changes.</p></li>
<h3id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h3>
1441
+
<h2id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h2>
1444
1442
1445
1443
<p>Run the following command from the Laravel root directory:</p>
1446
1444
@@ -1449,19 +1447,19 @@ <h3 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a bl
1449
1447
1450
1448
<p><br></p>
1451
1449
1452
-
<h3id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h3>
1450
+
<h2id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h2>
1453
1451
1454
1452
<p>Use <code>http://127.0.0.1</code> instead of <code>http://localhost</code> in your browser.</p>
1455
1453
1456
1454
<p><br></p>
1457
1455
1458
-
<h3id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h3>
1456
+
<h2id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h2>
1459
1457
1460
1458
<p>Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in <code>apache</code>/<code>httpd</code> service or other development tools you have installed.</p>
1461
1459
1462
1460
<p><br></p>
1463
1461
1464
-
<h3id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h3>
1462
+
<h2id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h2>
1465
1463
1466
1464
<ol>
1467
1465
<li>Go to docker Settings on your Windows machine.</li>
@@ -1472,7 +1470,7 @@ <h3 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Fo
1472
1470
1473
1471
<p><br></p>
1474
1472
1475
-
<h3id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h3>
1473
+
<h2id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h2>
1476
1474
1477
1475
<ol>
1478
1476
<li>Make sure you’ve <ahref="#Change-the-timezone">changed the timezone</a>.</li>
@@ -1481,7 +1479,7 @@ <h3 id="the-time-in-my-services-does-not-match-the-current-time">The time in my
1481
1479
1482
1480
<p><br></p>
1483
1481
1484
-
<h3id="i-get-mysql-connection-refused">I get MySQL connection refused</h3>
1482
+
<h2id="i-get-mysql-connection-refused">I get MySQL connection refused</h2>
1485
1483
1486
1484
<p>This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:</p>
0 commit comments