On the Wagon, Off the Wagon with Mac OS X Server

Apple UNIX Web Development

What a morning. Surprise surprise…I decided to install Mac OS X Server on my PowerBook to play around with the Apache conf (since I legally own two copies that just sit in my drawer). Ever since Mac OS X Server 1.0 came out I was excited to use Mac OS X Server. I loved AppleShare IP, and was ready to learn something new. Yeah, you are right, how many times can I tell this story?

To the point: you have web sites that need to be hosted in a Mac environment…what do you do? Two options (not including Darwin): Mac OS X Client, Mac OS X Client. I took my standard Mac OS X Client conf file and went line by line to see how the conf file was modified for Mac OS X Server. I will give credit to Apple for cleaning up the conf from 10.2 to 10.3, but man, it still leaves a lot of room for improvement. First of all….let me break down the conf files that Mac OS X Server uses.

  1. httpd.conf – The main configuration file that should contain all the basics. I have not figured out exactly why Apple has arranged the configuration file so…wierdly (not putting some basic directives like port number, listen, etc) but I am trying. At the end of standard Apache conf files, there is a Virtual Host template where ordinarily you would put all of your Virtual Host directives.
  2. virtual_host_global.conf – Apple decided to create a folder “sites” for all their vhost (Virtual Host) files, which is acceptable. There is also a conf file in the “sites” directory which does not make sense to me. The file is called “virtual_host_global.conf” and has one or two lines, depending if you want to use the performance cache. If you use the standard configuration from Apple, the “virtual_host_global.conf” contains one line:

    Listen*:16080

    If you chose to not use the performance cache, the file then looks like:

    Listen *:80
    NameVirtualHost *:80

  3. 0000_any_80_default.conf – Apple’s conf files for all virtual hosts (even if you only host one site, it is treated as a vhost). All site specific information (from the Server Admin) is located in this/these files. Good: Apple separated them out for easy editting. Bad: don’t expect your changes to stick if you edit them by hand and then do something in the Server Admin. Also, WARNING if you use SSL, make sure you use Apple’s SSL files, or you will face the wrath when editing your SSL and non SSL files (see old post)

What I would recommend if you have to use Mac OS X Server for your web needs, but feel it does not quite cut it…?

  1. Ask me for my httpd.conf file that I finally got to work that uses 95% standard Apache directives straight from the default Apache conf (5% of OS X Server stuff). I went line by line to see what it takes to break Mac OS X Server’s Apache conf. I rearranged the conf file to look more like the default conf as well as commented all my changes. My conf file does not use any of Apple’s vhost files, and you have a very simple, easy to follow example of vhosts.
  2. If you do not need a completely new httpd.conf file but would like to actually have the directives in the indivual site conf files to stick, create a conf file with your custom directives and then add an “Include “/etc/httpd/mychanges.conf” line at the end of the httpd.conf. Next time you restart your custom directives will be added and Apple will not be able to touch them.
  3. If you need complete control of your Apache install but still need to use Mac OS X Server for other server processes (AFP/FTP/Samba/Mail/DNS, etc) I would recommend downloading and compiling Apache into a different directory (ex. /usr/local) so you can control all your modules, conf files, etc.
  4. If you really are unhappy with Mac OS X Server’s web serving set up and do not need any other Mac OS X Server services, and do not want to worry about compiling, recompiling, and making sure Apple does not touch your custom configuration, I would at this point recommend running Apache on Mac OS X Client. Apple maintains updating Apache and does not touch the conf files with any GUI application. You can fully customize the conf file and not worry about too much because everything is standard Apache.
  5. Something to think about…

Leave a Reply

Your email address will not be published.
*
*

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Life

Umbrella Carrying/Using in Chicago

Ok, so what is the deal with the golf umbrellas downtown? Does one person really need the gigantic umbrella all for themselves? On my way home last night in the pouring rain I was reminded of how much I hate rain in Chicago. First, we have to deal with all the wind, and if you […]

Apple UNIX

those crazy Mac OS X/Mac OS X Server error messages!

If you did not notice, I have a thing for wierd and often funny Mac OS X and Mac OS X Server error messages. I periodically update the image on the right hand side that is a screen shot of an error I have received. Keep looking for new and exciting errors. PS. The “You […]