Apache is running on port 80 and interfering with Valet.
- Stop Apache:
sudo /usr/sbin/apachectl stop - Restart Valet:
valet restart
| ### Symphony 2.0.x ### | |
| Options +FollowSymlinks -Indexes | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| RewriteBase / | |
| ### DO NOT APPLY RULES WHEN REQUESTING "favicon.ico" | |
| RewriteCond %{REQUEST_FILENAME} favicon.ico [NC] |
| server { | |
| listen 80; | |
| server_name localhost; | |
| access_log /path/to/log/access.log; | |
| error_log /path/to/log/error.log; | |
| location / { | |
| root /path/to/root; | |
| index index.php; |
| <!-- ================== --> | |
| <!-- = At Normal Page = --> | |
| <!-- ================== --> | |
| <xsl:template match="data"> | |
| <h1>Contact Form</h1> | |
| <form method="post" action="{$current-path}"> | |
| <xsl:call-template name="send-message"/> | |
| </form> | |
| <script type="text/javascript"> |