« Nginx and Ubuntu » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 10 : | Ligne 10 : | ||
= Site configuration = | = Site configuration = | ||
<kode lang='bash'> | |||
# enable a web site | |||
sudo ln -s /etc/nginx/sites-available/phpinfo.net /etc/nginx/sites-enabled/phpinfo.net | |||
</kode> | |||
== phpinfo == | == phpinfo == | ||
<filebox fn='/etc/nginx/sites-available/phpinfo.conf' lang=nginx> | <filebox fn='/etc/nginx/sites-available/phpinfo.conf' lang=nginx> |
Version du 8 août 2023 à 21:44
Install
ai nginx php-fpm # check nginx and php-fpm are running sc-status nginx sc-status php8.2-fpm |
Site configuration
# enable a web site sudo ln -s /etc/nginx/sites-available/phpinfo.net /etc/nginx/sites-enabled/phpinfo.net |
phpinfo
/etc/nginx/sites-available/phpinfo.conf |
server { listen 80; root /var/www/php; index phpinfo.php; server_name phpinfo.net; location ~ \.php$ { include snippets/fastcgi-php.conf; # With php-fpm (or other unix sockets): fastcgi_pass unix:/run/php/php8.2-fpm.sock; } } |