been getting errors since rebuiling my start9 server and i cant seem to hit nextcloud via tor at all. neither tor or the app connect up. here is what i get when i try to connect via an inedx.php
"<?php
declare(strict_types=1);
/**
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- SPDX-License-Identifier: AGPL-3.0-only
*/
require_once DIR . â/lib/versioncheck.phpâ;
use OC\ServiceUnavailableException;
use OC\User\LoginException;
use OCP\HintException;
use OCP\IRequest;
use OCP\Security\Bruteforce\MaxDelayReached;
use OCP\Server;
use Psr\Log\LoggerInterface;
try {
require_once DIR . â/lib/base.phpâ;
OC::handleRequest();
} catch (ServiceUnavailableException $ex) {
Server::get(LoggerInterface::class)->error($ex->getMessage(), [
âappâ => âindexâ,
âexceptionâ => $ex,
]);
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 503);
} catch (HintException $ex) {
try {
OC_Template::printErrorPage($ex->getMessage(), $ex->getHint(), 503);
} catch (Exception $ex2) {
try {
Server::get(LoggerInterface::class)->error($ex->getMessage(), [
âappâ => âindexâ,
âexceptionâ => $ex,
]);
Server::get(LoggerInterface::class)->error($ex2->getMessage(), [
âappâ => âindexâ,
âexceptionâ => $ex2,
]);
} catch (Throwable $e) {
// no way to log it properly - but to avoid a white page of death we try harder and ignore this one here
}
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 500);
}
} catch (LoginException $ex) {
$request = Server::get(IRequest::class);
/**
* Routes with the @CORS annotation and other API endpoints should
* not return a webpage, so we only print the error page when html is accepted,
* otherwise we reply with a JSON array like the SecurityMiddleware would do.
/
if (stripos($request->getHeader(âAcceptâ), âhtmlâ) === false) {
http_response_code(401);
header(âContent-Type: application/json; charset=utf-8â);
echo json_encode([âmessageâ => $ex->getMessage()]);
exit();
}
OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 401);
} catch (MaxDelayReached $ex) {
$request = Server::get(IRequest::class);
/*
* Routes with the @CORS annotation and other API endpoints should
* not return a webpage, so we only print the error page when html is accepted,
* otherwise we reply with a JSON array like the BruteForceMiddleware would do.
*/
if (stripos($request->getHeader(âAcceptâ), âhtmlâ) === false) {
http_response_code(429);
header(âContent-Type: application/json; charset=utf-8â);
echo json_encode([âmessageâ => $ex->getMessage()]);
exit();
}
http_response_code(429);
OC_Template::printGuestPage(âcoreâ, â429â);
} catch (Exception $ex) {
Server::get(LoggerInterface::class)->error($ex->getMessage(), [
âappâ => âindexâ,
âexceptionâ => $ex,
]);
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 500);
} catch (Error $ex) {
try {
Server::get(LoggerInterface::class)->error($ex->getMessage(), [
âappâ => âindexâ,
âexceptionâ => $ex,
]);
} catch (Error $e) {
http_response_code(500);
header(âContent-Type: text/plain; charset=utf-8â);
print(âInternal Server Error\n\nâ);
print(âThe server encountered an internal error and was unable to complete your request.\nâ);
print(âPlease contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\nâ);
print(âMore details can be found in the webserver log.\nâ);
throw $ex;
}
OC_Template::printExceptionErrorPage($ex, 500);
}"
https://
instead of http://