Manager с использованием nginx ?
кто то точно запускал Ты лучше сразу конкретно спрашивай с чем возникли сложности
404 Not Found nginx/1.20.1 На любом роуте Laravel nginx.config server { server_name example.com www.example.com; charset off; index index.php index.html; disable_symlinks if_not_owner from=$root_path; include /etc/nginx/vhosts-includes/*.conf; include /etc/nginx/vhosts-resources/example.com/*.conf; access_log /var/www/httpd-logs/example.com.access.log; error_log /var/www/httpd-logs/example.com.error.log notice; ssi on; return 301 https://$host:443$request_uri; set $root_path /var/www/www-root/data/www/example.com/public; root $root_path; listen 83.220.169.86:80; location / { location ~ [^/]\.ph(p\d*|tml)$ { try_files /does_not_exists @php; } } location @php { fastcgi_index index.php; fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@example.com"; fastcgi_pass unix:/var/www/php-fpm/3.sock; fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$; try_files $uri =404; include fastcgi_params; } } server { server_name example.com www.example.com; ssl_certificate "/var/www/httpd-cert/www-root/example.com_le1.crtca"; ssl_certificate_key "/var/www/httpd-cert/www-root/example.com_le1.key"; ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4; ssl_prefer_server_ciphers on; ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; add_header Strict-Transport-Security "max-age=31536000;"; ssl_dhparam /etc/ssl/certs/dhparam4096.pem; charset off; index index.php index.html; disable_symlinks if_not_owner from=$root_path; include /etc/nginx/vhosts-includes/*.conf; include /etc/nginx/vhosts-resources/example.com/*.conf; access_log /var/www/httpd-logs/example.com.access.log; error_log /var/www/httpd-logs/example.com.error.log notice; ssi on; set $root_path /var/www/www-root/data/www/example.com/public; root $root_path; listen 83.220.169.86:443 ssl; location / { location ~ [^/]\.ph(p\d*|tml)$ { try_files /does_not_exists @php; } } location @php { fastcgi_index index.php; fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f webmaster@example.com"; fastcgi_pass unix:/var/www/php-fpm/3.sock; fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$; try_files $uri =404; include fastcgi_params; } }
public/index.php существует? Прост недавно с этим напоролся
да
Ты на www.example.com ломишся? )
Почему везде example.com?
нет, я поменял что бы не засорять своим тестовым доменом)
-rwxrwxr-x 1 www-root www-root 1731 Aug 24 14:03 index.php
ну так по ip сайт открывается, так что смотри логи, что конкретно в твоем случае приводит к 404
конфигурация nginx
Обсуждают сегодня