Configuring Apache in Mac OS x

Source: Internet
Author: User

The version of Mac OS X I'm using is 10.8.2,mac comes with an Apache environment.

Launch Apache
Set up a virtual host


Launch Apache (can be operated directly with Root)

Open terminal (terminal), enter sudo apachectl-v, (you may need to enter the machine secret). The Apache version is shown below




Then enter sudo apachectl start so that Apache starts up. Open Safari Browser address bar Enter "http://localhost", you can see the content "It works!" The page. It is located under/library (Resource Library)/webserver/documents/, which is the default root directory for Apache.

The installation directory for Apache is:/etc/apache2/,etc is hidden by default. There are three ways of viewing:

Right-click Finder under the dock, select "Go to Folder" and enter "/etc"
In the Finder-----Go to the folder and enter/etc
You can enter "OPEN/ETC" in terminal


Set up a virtual host

Run "sudo vi/etc/apache2/httpd.conf" on the terminal to open the Apche configuration file
Find "#Include/private/etc/apache2/extra/httpd-vhosts.conf" in httpd.conf, remove the "#" from the front and save and exit.
Run the "sudo apachectl restart" and restart Apache to turn on the virtual host Configuration feature.
Run "sudo vi/etc/apache2/extra/httpd-vhosts.conf", open the configuration virtual host file httpd-vhost.conf, configure the virtual host. It is important to note that the file is enabled by default for two virtual hosts as an example:

<virtualhost *:80>ServerAdmin [email protected]Host.example.com DocumentRoot"/usr/docs/dummy-host.example.com"ServerName dummy-host.example.com errorlog"/private/var/log/apache2/dummy-host.example.com-error_log"Customlog"/private/var/log/apache2/dummy-host.example.com-access_log" common</virtualhost> <virtualhost *:80>< Span style= "color: #000000;" > ServerAdmin [Email protected]host2.example.com documentroot  "/usr/docs/dummy-host2.example.com"  ServerName dummy-host2.example.com errorlog  "/private/var/log/apache2/dummy-host2.example.com-error_log "  Customlog " /private/ Var/log/apache2/dummy-host2.example.com-access_log "  Common</virtualhost>          


In fact, these two virtual hosts do not exist, and when no other virtual host is configured, it may result in the following prompt when accessing localhost:

Forbidden
You don't have permission to access/index.php on this server
The simplest way to do this is to add the # to the front of each line and comment it out, so that you can refer to it without causing other problems.

Add the following configuration

<virtualhost *:80>DocumentRoot"/library/webserver/documents"ServerName localhost errorlog"/private/var/log/apache2/localhost-error_log"Customlog"/private/var/log/apache2/localhost-access_log"Common</virtualhost> <virtualhost *:80> documentroot "/users/snandy/work" ServerName mysites errorlog "/private/var/ Log/apache2/sites-error_log" customlog "/private/var/log/apache2/sites-access_log " Common <directory/> Options Indexes followsymlinks multiviews allowoverride None Order deny,allow allow F Rom all </Directory></VirtualHost>          


Save the exit and restart Apache.

Run "sudo vi/etc/hosts", open the Hosts configuration file, add "127.0.0.1 mysites", so you can configure the completion sites virtual host, can access "http://mysites", before 10.8 mac OS The x version has exactly the same content as the "http://localhost/~[user name".
Note that the log "errorlog"/private/var/log/apache2/sites-error_log "" can also be deleted, but logging is actually a good habit, in case of problems can help us to judge. If you keep these log code, a certain log file path is present, if you arbitrarily modify a non-existent, will cause Apache can not service without error prompts, this is more disgusting.

Transferred from: http://www.cnblogs.com/snandy/archive/2012/11/13/2765381.html

Configuring Apache in Mac OS x

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.