44 lines
1016 B
Plaintext
44 lines
1016 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
# SSL configuration
|
|
#
|
|
listen 443 ssl default_server;
|
|
listen [::]:443 ssl default_server;
|
|
ssl_certificate /etc/ssl/certs/dolibarr-selfsigned.crt;
|
|
ssl_certificate_key /etc/ssl/private/dolibarr-selfsigned.key;
|
|
#ssl_protocols TLSv1.3;
|
|
|
|
root /app/dolibarr/htdocs;
|
|
|
|
# Add index.php to the list if you are using PHP
|
|
index index.html index.htm index.php index.nginx-debian.html;
|
|
|
|
server_name _;
|
|
|
|
location / {
|
|
# First attempt to serve request as file, then
|
|
# as directory, then fall back to displaying a 404.
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
# pass PHP scripts to FastCGI server
|
|
#
|
|
location ~ \.php$ {
|
|
include snippets/fastcgi-php.conf;
|
|
#
|
|
# # With php-fpm (or other unix sockets):
|
|
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
|
|
# # With php-cgi (or other tcp sockets):
|
|
# fastcgi_pass 127.0.0.1:9000;
|
|
}
|
|
|
|
# deny access to .htaccess files, if Apache's document root
|
|
# concurs with nginx's one
|
|
#
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
}
|