Browse Source

Merge branch 'feature/docs-install' into develop

Conflicts:
	laravel/documentation/install.md
Shawn McCool 12 years ago
parent
commit
bcdde02229
1 changed files with 8 additions and 9 deletions
  1. 8 9
      laravel/documentation/install.md

+ 8 - 9
laravel/documentation/install.md

@@ -4,7 +4,7 @@
 
 
 - [Requirements](#requirements)
 - [Requirements](#requirements)
 - [Installation](#installation)
 - [Installation](#installation)
-- [Server Configuration: Why Public?](#server-configuration)
+- [Server Configuration](#server-configuration)
 - [Basic Configuration](#basic-configuration)
 - [Basic Configuration](#basic-configuration)
 - [Environments](#environments)
 - [Environments](#environments)
 - [Cleaner URLs](#cleaner-urls)
 - [Cleaner URLs](#cleaner-urls)
@@ -40,12 +40,13 @@ If you are having problems installing, try the following:
 
 
 - Make sure the **public** directory is the document root of your web server. (see: Server Configuration below)
 - Make sure the **public** directory is the document root of your web server. (see: Server Configuration below)
 - If you are using mod_rewrite, set the **index** option in **application/config/application.php** to an empty string.
 - If you are using mod_rewrite, set the **index** option in **application/config/application.php** to an empty string.
+<<<<<<< HEAD
 - Verify that your storage folder and the folders within are writable by your web server.
 - Verify that your storage folder and the folders within are writable by your web server.
 
 
 <a name="server-configuration"></a>
 <a name="server-configuration"></a>
-## Server Configuration: Why Public?
+## Server Configuration
 
 
-Like most web-development frameworks, Laravel is designed to protect your application code, bundles, and local storage by placing only files that are necessarily public in the web server's DocumentRoot. This prevents some types of server misconfiguration from making your code (including database passwords and other configuration data) accessible through the web server. It's best to be safe.
+Like most web-development frameworks, Laravel is designed to protect your application code, bundles, and local storage by placing only files that are necessarily public in the web server's DocumentRoot. This prevents some types of server misconfiguration from making your code (including database passwords and other configuration data) accessible through the web server. It's best to be safe. 
 
 
 In this example let's imagine that we installed Laravel to the directory **/Users/JonSnow/Sites/MySite**.
 In this example let's imagine that we installed Laravel to the directory **/Users/JonSnow/Sites/MySite**.
 
 
@@ -53,15 +54,13 @@ A very basic example of an Apache VirtualHost configuration for MySite might loo
 
 
 	<VirtualHost *:80>
 	<VirtualHost *:80>
 		DocumentRoot /Users/JonSnow/Sites/MySite/public
 		DocumentRoot /Users/JonSnow/Sites/MySite/public
-		ServerName mysite.local
+		ServerName mysite.dev
 	</VirtualHost>
 	</VirtualHost>
 
 
-Notice that while we installed to **/Users/JonSnow/Sites/MySite** our DocumentRoot points to **/Users/JonSnow/Sites/MySite/public**.
-
-Pointing the DocumentRoot to the public folder is a commonly used best-practice. However, you may need to use Laravel on a host that does not allow you to update your DocumentRoot. This is possible, but before resigning to this option it's best to contact your host and verify that you are unable to change your DocumentRoot to increase the security of your application.
-
-More information about how to use the public folder can be found on the [Laravel Forums](http://forums.laravel.com/viewtopic.php?pid=10023#p10023).
+Notice that while we installed to **/Users/JonSnow/Sites/MySite** our DocumentRoot points to /Users/JonSnow/Sites/MySite/public**.
 
 
+While pointing the DocumentRoot to the public folder is a commonly used best-practice, it's possible that you may need to use Laravel on a host that does not allow you to update your DocumentRoot. A collection of algorithms to circumvent this need can be found [http://forums.laravel.com/viewtopic.php?id=1258](on the Laravel forums.)
+>>>>>>> feature/docs-install
 
 
 <a name="basic-configuration"></a>
 <a name="basic-configuration"></a>
 ## Basic Configuration
 ## Basic Configuration