mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
Adds bare metal installer for ubuntu. Tested with version 24.04. You may want to or have to change the PHPVERSION variable in the start script for other versions
21 lines
705 B
Plaintext
21 lines
705 B
Plaintext
server {
|
|
listen 20211 default_server;
|
|
root /var/www/html/netalertx;
|
|
index index.php;
|
|
#rewrite /app/(.*) / permanent;
|
|
add_header X-Forwarded-Prefix "/netalertx" always;
|
|
proxy_set_header X-Forwarded-Prefix "/netalertx";
|
|
|
|
location ~* \.php$ {
|
|
# Set Cache-Control header to prevent caching on the first load
|
|
add_header Cache-Control "no-store";
|
|
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
|
fastcgi_connect_timeout 75;
|
|
fastcgi_send_timeout 600;
|
|
fastcgi_read_timeout 600;
|
|
}
|
|
}
|