# doc : https://nginx.org/en/docs/dirindex.html # WIP redirect http to https #server { # listen 80; # listen [::]:80; # server_name _; # return 301 https://$host$request_uri; #} server { listen 443 ssl; # for ipv4, on port 443, specifying that accepted connections should works in ssl mode listen [::]:443 ssl; # for ipv6 server_name ${WP_URL}; ssl_certificate /etc/ssl/certs/${WP_URL}.crt; # specifies the file with the ssl certificate (self signed here) generated by openssl ssl_certificate_key /etc/ssl/private/${WP_URL}.key; # specifies the file with the secret key of the certificate root /var/www/html/; # contains default nginx index.nginx-debian.html index index.html index.php; # defines files that will be used as index (https://nginx.org/en/docs/http/ngx_http_index_module.html) location / { autoindex on; try_files $uri $uri/ =404; # from /etc/nginx/sites-enabled/default : First attempt to serve request as file, then as directory, then fall back to displaying a 404 } # pass PHP scripts to FastCGI (PHP-FPM) server location ~ \.php$ { autoindex on; include fastcgi_params; fastcgi_pass wordpress:9000; # https://joshtronic.com/2019/07/29/symlinks-with-nginx-and-php-fpm/ #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_split_path_info ^(.+\.php)(/.+)$; try_files $uri =404; } }