Инструменты пользователя

Инструменты сайта


it:nginx

Содержание

nginx

http://wiki.urx.su/it:php - про php-fpm

php-fpm

https://itdraft.ru/2019/08/27/ustanovka-nginx-i-php-fpm-na-debian-10/

server {
    listen 80 default_server;
    listen [::]:80 default_server;
 
    set $root_path /var/www/html;
    set $php_sock unix:/var/run/php/php7.3-fpm.sock;
 
    root $root_path;
    index index.php index.html index.htm index.nginx-debian.html;
 
    server_name _;
 
    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;
 
    location / {
        try_files $uri $uri/ =404;
    }
 
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass $php_sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

https

https://nginx.org/ru/docs/http/configuring_https_servers.html - Настройка HTTPS-серверов
https://www.leaderssl.ru/articles/224-ssl-nginx-ustanavlivaem-ssl-sertifikat-na-server-nginx - SSL Nginx: устанавливаем SSL-сертификат на сервер Nginx
https://habr.com/ru/post/250931/ - Переходим на HTTPS на Nginx: шпаргалка
https://abc-server.com/ru/blog/administration/creating-ssl-for-nginx-in-ubuntu-1604/ - Создание самоподписанного SSL-сертификата для Nginx в Ubuntu 16.04
https://itsecforu.ru/2018/07/31/как-создать-самоподписанный-сертифи/ - Как создать самоподписанный сертификат SSL для Nginx на Ubuntu 18.04


proba1

it/nginx.txt · Последнее изменение: 2020/06/28 10:35 — ura2404