Esta é minha primeira feição de servidor web e servidor DNS, estou usando:
E tenho problemas ao configurar meu aplicativo lugar para executar vários aplicativos:
Quando tento usar o comando php -S localhost:8080
dentro do diretório do projeto yii, tudo funciona muito, mas quando eu chamo o domínio no navegador (www.wms.lugar
), há um erro “Registo não encontrado“
Cá está minha feição nginx (exemplo para yii):
server {
listen 80;
server_name www.wms.lugar;
root /Users/ademugnirusmana/Projects/www/wms;
índice índice.php;
location / {
try_files $uri $uri/ /índice.php?$query_string;
}
location ~ .php$ {
include fastcgi_params;
Sua visita nos ajuda a continuar oferecendo o melhor para você! fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index índice.php;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
}
Cá feição hospedar
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
#127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 Sua visita nos ajuda a continuar oferecendo o melhor para você! www.reporting.lugar
#127.0.0.1 Sua visita nos ajuda a continuar oferecendo o melhor para você! www.middleware.lugar
Cá a feição do fpm “usr/lugar/etc/php/7.4/php-fpm.d/www.conf“
listen = 127.0.0.1:9000
Cá o fpm “p.s. grep nginx“
ademugnirusmana 16744 0.0 0.0 34130864 468 s000 S+ 11:24am 0:00.01 tail -f /usr/lugar/var/log/nginx/error.log
nobody 15649 0.0 0.0 34161744 1396 ?? S 11:18am 0:00.01 nginx: worker process
root 9749 0.0 0.0 34161536 1544 ?? Ss 10:24am 0:00.01 nginx: master process nginx
ademugnirusmana 17616 0.0 0.0 34141260 916 s001 S+ 11:35am 0:00.00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn --exclude-dir=.idea --exclude-dir=.tox --exclude-dir=.venv --exclude-dir=venv nginx
Cá a permissão do diretório (exemplo yii)
drwxr-xr-x 18 nobody nobody 576 25 Nov 10:52 /Users/ademugnirusmana/Projects/www/wms
Cá o log de “nginx“
2024/11/25 11:29:34 [crit] 15649#0: *52 stat() "/Users/ademugnirusmana/Projects/www/wms/" failed (13: Permission denied), client: 127.0.0.1, server: www.wms.lugar, request: "GET / HTTP/1.1", host: "www.wms.lugar"
2024/11/25 11:29:34 [error] 15649#0: *52 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: 127.0.0.1, server: www.wms.lugar, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "www.wms.lugar"
Cá o log de “pm“
[25-Nov-2024 11:40:35] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[25-Nov-2024 11:40:35] NOTICE: [pool www] 'user' directive is ignored when FPM is not running as root
[25-Nov-2024 11:40:35] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[25-Nov-2024 11:40:35] NOTICE: [pool www] 'group' directive is ignored when FPM is not running as root
[25-Nov-2024 11:40:35] ERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (48)
[25-Nov-2024 11:40:35] ERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (48)
[25-Nov-2024 11:40:35] ERROR: FPM initialization failed
[25-Nov-2024 11:40:35] ERROR: FPM initialization failed
Alguém pode me ajudar onde errei na feição ou alguma coisa para consertar?
Notas Adicionais:
Eu configurei no mac Monterey 12.7.6 (chipset Intel)
Tags:
Crédito: Natividade Original