- turn off php73 from nginx conf example by default

This commit is contained in:
2022-03-04 00:48:14 +03:00
parent d6d86179e6
commit 3cd2603bf3
2 changed files with 5 additions and 10 deletions

View File

@ -1,6 +1,6 @@
upstream php73 {
server php73:9000;
}
#upstream php73 {
# server php73:9000;
#}
upstream php74 {
server php74:9000;
@ -82,7 +82,7 @@ server {
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param SERVER_NAME $host;
fastcgi_pass php73;
fastcgi_pass php74;
fastcgi_index index.php;
}
}