24 lines
571 B
Plaintext
24 lines
571 B
Plaintext
upstream php {
|
|
server unix:/run/php/php8.2-fpm.sock;
|
|
}
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
index index.php;
|
|
server_name thetempusproject.com;
|
|
root /var/www/thetempusproject.com;
|
|
charset utf-8;
|
|
sendfile off;
|
|
client_max_body_size 100m;
|
|
|
|
# custom TTP code
|
|
include snippets/ttp.conf;
|
|
|
|
location ~* \.php$ {
|
|
fastcgi_pass php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
fastcgi_intercept_errors on;
|
|
}
|
|
} |