Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get the webpage but no information in the boxes. #518

Open
bananabob opened this issue Apr 28, 2024 · 0 comments
Open

Get the webpage but no information in the boxes. #518

bananabob opened this issue Apr 28, 2024 · 0 comments

Comments

@bananabob
Copy link

I can see the webpage produced by Dash, but there is no data in any of the boxes.

My set up is on a RPi 5. I am using Nginx

Here is my nginx config:

server {
	listen 80 default_server;
	listen [::]:80 default_server;

	autoindex on;
	root /var/www/html;

	index index.html index.htm index.php;

	server_name silver;

 	location / {
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ =404;
}

        location /dash {
        index index.html index.php;
}


	# 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/php7.4-fpm.sock;
		fastcgi_pass unix:/run/php/php8.2-fpm.sock;

                fastcgi_split_path_info ^(.+\.php)(/.*)$;

                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
		fastcgi_param DOCUMENT_ROOT $realpath_root;
                fastcgi_param HTTPS off;
                fastcgi_read_timeout 1000;

                include fastcgi_params;


	#	# With php-cgi (or other tcp sockets):
	#	fastcgi_pass 127.0.0.1:9000;
	}
}

In /var/www/ the /html is a link:

lrwxrwxrwx 1 root root 32 Mar 29 13:28 html -> /S3TB/data/share/Documents/HTML/

and /dash can be found in that directory

drwxrwxr-x 5 james janda 4096 Apr 1 14:17 dash

I am assuming that the problem is with my nginx configuration for the location of dash.

Any help would be appreciated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant