« Nginx and Ubuntu » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
|||
Ligne 40 : | Ligne 40 : | ||
root /var/www/mediawiki; | root /var/www/mediawiki; | ||
index index.php; | index index.php; | ||
# | |||
location ^~ /cache/ { | |||
deny all; | |||
} | |||
location ^~ /images/ { } | |||
# Handling for the article path (pretty URLs) | |||
location /wiki/ { | |||
rewrite ^/wiki/(?<pagename>.*)$ /index.php; | |||
} | |||
location ~ \.php$ { | location ~ \.php$ { |
Version du 9 août 2023 à 22:22
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.conf /etc/nginx/sites-enabled/phpinfo.conf sc-restart nginx |
phpinfo
/etc/nginx/sites-available/phpinfo.conf |
server { listen 80; root /var/www/php; index info.php; server_name phpinfo.net; location ~ \.php$ { include snippets/fastcgi-php.conf; # With php-fpm (or other unix sockets): fastcgi_pass unix:/run/php/php-fpm.sock; } } |
Mediawiki
/etc/nginx/site-availables/mediawiki.conf |
server { server_name mediawiki.domain.net; listen 80; root /var/www/mediawiki; index index.php; # location ^~ /cache/ { deny all; } location ^~ /images/ { } # Handling for the article path (pretty URLs) location /wiki/ { rewrite ^/wiki/(?<pagename>.*)$ /index.php; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php-fpm.sock; } } |