Changes for page Development Tools-Running Through Apache
Last modified by Aaron Rosenzweig on 2011/05/09 01:46
From version 53.1
edited by Pascal Robert
on 2007/09/03 17:10
on 2007/09/03 17:10
Change comment:
There is no comment for this version
To version 59.1
edited by ghulands
on 2008/08/18 23:37
on 2008/08/18 23:37
Change comment:
Added in to modify the httpd.conf's <Directoy/> settings
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. probert1 +XWiki.ghulands - Content
-
... ... @@ -6,20 +6,26 @@ 6 6 7 7 When you turn on your web server, Apache will listen on the network interfaces that were configured when it starts. If you change networks, you may need to manually restart apache. You can do this by either stopping and restarting Personal Web Sharing, or you can run "apachectl restart" from the commandline as the root user. Because this can get annoying if you are working on a laptop, or periodically using VPN's, there are a couple ways to make this process easier. 8 8 9 -= Restarting ApacheFix#1: Explicitly Setting Your Hostname =9 += Optional Extra Configuration: Explicitly Setting Your Hostname = 10 10 11 11 {{info title="Useful Information"}} 12 12 13 -The changes in this section are only required if you want your hostname to be stable across network changes. While this simplifies many aspects of development (like testing cookies), it cause sproblems if you need to be able to access yourwebserverfrom a remote machine, including if you need to be able to test your web app from a Parallels VM.13 +The changes in this section are only required if you want your hostname to be stable across network changes. While this simplifies many aspects of development (like testing cookies and https), it may cause problems with those specific aspects (cookies, https, etc.) if you need to be able to access your dev machine from a remote machine, including if you need to be able to test your web app from a Parallels VM. 14 14 15 +Bonjour Delays: Apparently the procedure here is also useful for preventing "Bonjour" delays when you launch the browser to test your app on your development machine. 16 + 15 15 {{/info}} 16 16 17 17 == Edit Apache Config == 18 18 19 - Note: **Do NOT tryto usethe/ Rendezvous name of yourmachineinhisstep.**It will causeyou grief.Accept thisand don't even try. You havebeenwarned.21 +{{warning title="Bonjour, comment ça va? .... Trés bien, merci!"}} 20 20 21 - Edit**/etc/httpd/httpd.conf**,findthelinecontaining**ServerName**andchangeittothis:23 +*Do NOT try to use the Bonjour / Rendezvous name of your machine in this step.* It will cause you grief. Accept this and don't even try. You have been warned. 22 22 25 +{{/warning}} 26 + 27 +Edit **/etc/httpd/httpd.conf**, find the line containing **ServerName** and change it to this. If you use Leopard (OS X 10.5), the file is at **/etc/apache2/httpd.conf**. 28 + 23 23 {{code}} 24 24 25 25 ServerName localhost ... ... @@ -26,14 +26,56 @@ 26 26 27 27 {{/code}} 28 28 29 -That line may be commented out by default. You can simply uncomment it (remove the leading pound sign) and t henrestartapache:35 +That line may be commented out by default. You can simply uncomment it (remove the leading pound sign). You will also need to find this block 30 30 31 31 {{code}} 32 32 39 +# First, we configure the "default" to be a very restrictive set of 40 +# features. 41 +# 42 +<Directory /> 43 + Options FollowSymLinks 44 + AllowOverride None 45 + Order deny,allow 46 + Deny from all 47 +</Directory> 48 + 49 +{{/code}} 50 + 51 +And modify like so: 52 + 53 +{{code}} 54 + 55 +# First, we configure the "default" to be a very restrictive set of 56 +# features. 57 +# 58 +<Directory /> 59 + Options FollowSymLinks 60 + AllowOverride None 61 +# Order deny,allow 62 +# Deny from all 63 +</Directory> 64 + 65 +{{/code}} 66 + 67 +Then restart apache: 68 + 69 +{{code}} 70 + 33 33 sudo apachectl restart 34 34 35 35 {{/code}} 36 36 75 +== Tell the adaptor to use localhost == 76 + 77 +Edit **/System/Library/WebObjects/Adaptors/Apache/apache.conf** to make sure that your enabled/uncommented WebObjectsConfig property looks like this: 78 + 79 +{{code}} 80 + 81 +WebObjectsConfig http://localhost:1085 10 82 + 83 +{{/code}} 84 + 37 37 == Tell wotaskd to Use Localhost Too == 38 38 39 39 Edit **/System/Library/WebObjects/JavaApplications/wotaskd.woa/Contents/Resources/Properties** ... ... @@ -76,10 +76,15 @@ 76 76 77 77 You may want to set this in your global WOLips settings so you don't have to set it every time you make a new launch configuration. You will need to go back and modify existing launch configurations with these settings even if you set it globally. Global settings only apply to newly created launch configurations. 78 78 79 -= RestartingApacheFix #2: Kickstart =127 += Apache Restart = 80 80 81 - The alternative way torestart apacheisto havea script run anytime yournetworkchanges.Itturns out that OS X supports such a capability already via Kickstart.129 +{{info title="Why would I need this?"}} 82 82 131 +If you have a laptop and you get an "Application cannot be found" or some such error in the browser after auto-switching networks (for example going from a work network to a home network), restarting apache can resolve the error condition most of the time. A script is shown below to do that. 132 +If you already implemented the "localhost" explicit hostname setup above, then you will probably not need to bother with this section. 133 + 134 +{{/info}} 135 + 83 83 == Making a restart script == 84 84 85 85 Create a script named /usr/local/bin/restartApache and set the contents to: ... ... @@ -92,47 +92,3 @@ 92 92 /usr/sbin/apachectl start 93 93 94 94 {{/code}} 95 - 96 -== Modifying Kicker == 97 - 98 -1. Edit /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/Kicker.xml 99 -1. At the end of the <array> section, add the following block of XML: 100 - 101 -{{code}} 102 - 103 -<dict> 104 - <key>execCommand</key> 105 - <string>/usr/local/bin/restartApache</string> 106 - <key>execUID</key> 107 - <integer>0</integer> 108 - <key>keys</key> 109 - <array> 110 - <string>State:/Network/Global/DNS</string> 111 - <string>State:/Network/Global/IPv4</string> 112 - <string>State:/Network/Global/IPv6</string> 113 - <string>State:/Network/Global/NetInfo</string> 114 - </array> 115 - <key>name</key> 116 - <string>restart_apache</string> 117 - </dict> 118 - 119 -{{/code}} 120 - 121 -== Restart == 122 - 123 -Restart your machine (you may be able to get away with just logging out and back in). Any network changes will now automatically restart Apache. 124 - 125 -== Extra Credit == 126 - 127 -I also like to have a growl notification fire when my Apache restarts. To do this: 128 - 129 -1. grab the growl shell script from [[http://www.macosxhints.com/dlfiles/growl_sh.txt]]. 130 -1. next, at the end of your /usr/local/bin/restartApache script, you can add: 131 - 132 -{{code}} 133 - 134 -export G_APPLICATION_ICON=EOModeler.app 135 -export G_TITLE=WebObjects 136 -/usr/local/bin/growl "Apache Restarted" 137 - 138 -{{/code}}