如何检查 MAMP 中的服务器配置(“$ httpd -S”)?
How can I check server configuration ("$ httpd -S") in MAMP?
我之前使用 Homebrew 在我的 Mac Mini 上安装了 Apache,但我目前使用的是 MAMP。当我发出终端命令 httpd -S
来检查 Apache 配置时,它会检查 Homebrew 配置。有什么方法可以测试 MAMP 的配置吗?我想使用相同的 httpd -S
命令,但如果有另一种首选方法来为 MAMP 执行此操作,那也很好。
你用 -f
标志来做,像这样:
httpd -f /Applications/MAMP/conf/httpd.conf -S
这在 httpd
选项中:
Options:
...
-f file: specify an alternate ServerConfigFile
我之前使用 Homebrew 在我的 Mac Mini 上安装了 Apache,但我目前使用的是 MAMP。当我发出终端命令 httpd -S
来检查 Apache 配置时,它会检查 Homebrew 配置。有什么方法可以测试 MAMP 的配置吗?我想使用相同的 httpd -S
命令,但如果有另一种首选方法来为 MAMP 执行此操作,那也很好。
你用 -f
标志来做,像这样:
httpd -f /Applications/MAMP/conf/httpd.conf -S
这在 httpd
选项中:
Options:
...
-f file: specify an alternate ServerConfigFile