Fixed sed regular expression for disabling ipv6
Running the commands as they were before caused a duplicate "listen" entry in the nginx dynmaps configuration file. Like this: server { listen 8081; listen 8081; ... Causing nginx to reject the configuration and failing to start.
Dieser Commit ist enthalten in:
Ursprung
22e7f9fb6e
Commit
352ec8c92b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -89,8 +89,8 @@ Fix the following NGINX, Dovecot and php-fpm config files
|
|||
```
|
||||
sed -i '/::/d' data/conf/nginx/listen_*
|
||||
sed -i '/::/d' data/conf/nginx/templates/listen*
|
||||
sed -i '/::/d' data/conf/nginx/dynmaps.conf
|
||||
sed -i 's/,\[::\]//g' data/conf/dovecot/dovecot.conf
|
||||
sed -i 's/\[::\]://g' data/conf/nginx/dynmaps.conf
|
||||
sed -i 's/\[::\]://g' data/conf/phpfpm/php-fpm.d/pools.conf
|
||||
```
|
||||
|
||||
|
|
Laden …
In neuem Issue referenzieren