1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-07 09:10:03 +01:00

Revert to using port instead of socket to see if it helps stale page issue

This commit is contained in:
Adam Wathan
2016-10-22 11:35:07 -04:00
parent 4cb2e9d331
commit 733747900e
4 changed files with 5 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ function updateConfiguration()
$contents = preg_replace('/^user = .+$/m', 'user = '.user(), $contents);
$contents = preg_replace('/^group = .+$/m', 'group = staff', $contents);
$contents = preg_replace('/^listen = .+$/m', 'listen = /var/run/fpm-valet.socket', $contents);
$contents = preg_replace('/^listen = .+$/m', 'listen = 127.0.0.1:9000', $contents);
$this->files->put($this->fpmConfigPath(), $contents);
}