मुझे पता है कि यह अन्य प्रश्नों के समान दिखता है, लेकिन लगता है कि योसमाइट ने अपग्रेड के साथ अपाचे कॉन्फ़िगरेशन के साथ कुछ बदल दिया है। मेरा त्रुटि लॉग कहता है "क्लाइंट सर्वर कॉन्फ़िगरेशन से इनकार किया: /Users/douglas/Sites/testpatient.p"
Apache संस्करण: MacBook-Pro: apache2 douglas $ apachectl -v सर्वर संस्करण: Apache / 2.4.9 (Unix) सर्वर निर्मित: Sep 9 2014 14:48:20 मेरी douglas.conf फ़ाइल 6,000 रूट / पहिया और निम्न है:
<Directory "/Users/douglas/Sites">
Options Indexes Multiviews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
मेरे http.conf में निम्नलिखित हैं:
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User _www
Group _www
</IfModule>
...
DocumentRoot "/Library/WebServer/Documents"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy All
</Directory>
...
<Directory "/Library/WebServer/Documents">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks MultiViews
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
#AllowOverride None
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
Satisfy All
</Directory>
कुछ भी सराहना की जाएगी। मैंने पिछली http.conf फ़ाइल पर वापस लौटने की कोशिश की, लेकिन जहां तक लोड किए जाने की आवश्यकता है, वहां तक कई अंतर हैं। यह पूरी तरह से संभव है कि मैं एक मॉड्यूल से चूक गया लेकिन लॉग में कोई शिकायत नहीं है।