nginx configuration setup
Posted: Tue Mar 28, 2023 12:58 pm
Script URL:
Version of script:
Hosting company: self-hosted
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Does anyone have a config file for use with nginx and Hesk?
I tried using this but my site does not load
Version of script:
Hosting company: self-hosted
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
Does anyone have a config file for use with nginx and Hesk?
I tried using this but my site does not load
Code: Select all
server {
listen 80;
listen [::]:80;
server_name servicedesk.mysite.com;
root /var/www/servicedesk;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}