Thanks for the responses guys, much appreciated!
@OliverV I ran this install method from here with a Nextcloudpi image: https://raspberrytips.com/install-nextcloud-raspberry-pi/
a2dismod ssl = I ran this and it worked
a2dismod default-ssl = I ran this and got âERROR: Module default-ssl does not exist!â
I should also note that I am running Pihole on port 8888 and this still loads fine. Itâs almost like I messed up port 80 by installing a second certificate? I didnât realize snakeoil was enabled by default until after I ran the commands in my first post. Thing is, it never showed my local IP being secure in the browser URL, it always had it crossed out but the NCP interface would still load. I just assumed no local cert was installed and running.
Basically I was trying to get a local SSL cert running so I could use âNextcloud Yagaâ phone app (it requires SSL) to view my photos from my NCP server.
Anyway, I ran âsudo ncp-reportâ and have attached the relevant system info and HTTP log as the nextcloud admin interface still isnât loading. Thanks again for the help a total newb at all this! Just switched to Linux on my desktop too 
<details>
<summary>NextCloudPi diagnostics</summary>
```
NextCloudPi version v1.35.0
NextCloudPi image NextCloudPi_09-05-20
distribution Raspbian GNU/Linux 10 \n \l
automount yes
USB devices sda
datadir /media/myCloudDrive/ncdata
data in SD no
data filesystem btrfs
data disk usage 3.1G/240G
rootfs usage 2.8G/59G
swapfile /var/swap
dbdir /var/lib/mysql
Nextcloud check ok
Nextcloud version 19.0.2.2
HTTPD service down
PHP service up
MariaDB service up
Redis service up
Postfix service up
internet check ok
port check 80 open
port check 443 open
IP ***REMOVED SENSITIVE VALUE***
gateway ***REMOVED SENSITIVE VALUE***
interface wlan0
certificates ***REMOVED SENSITIVE VALUE***
NAT loopback no
uptime 21min
```
</details>
<details>
<summary>Nextcloud configuration</summary>
```
{
"system": {
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": {
"0": "localhost",
"5": "nextcloudpi.local",
"7": "nextcloudpi",
"8": "nextcloudpi.lan",
"11": "143.244.x.x",
"1": "192.168.1.136"
},
"datadirectory": "***REMOVED SENSITIVE VALUE***",
"dbtype": "mysql",
"version": "19.0.2.2",
"overwrite.cli.url": "http:\/\/localhost",
"dbname": "***REMOVED SENSITIVE VALUE***",
"dbhost": "***REMOVED SENSITIVE VALUE***",
"dbport": "",
"dbtableprefix": "oc_",
"mysql.utf8mb4": true,
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"installed": true,
"instanceid": "***REMOVED SENSITIVE VALUE***",
"memcache.local": "\\OC\\Memcache\\Redis",
"memcache.locking": "\\OC\\Memcache\\Redis",
"redis": {
"host": "***REMOVED SENSITIVE VALUE***",
"port": 0,
"timeout": 0,
"password": "***REMOVED SENSITIVE VALUE***"
},
"tempdirectory": "\/media\/myCloudDrive\/ncdata\/tmp",
"mail_smtpmode": "smtp",
"mail_smtpauthtype": "LOGIN",
"mail_from_address": "***REMOVED SENSITIVE VALUE***",
"mail_domain": "***REMOVED SENSITIVE VALUE***",
"preview_max_x": "2048",
"preview_max_y": "2048",
"jpeg_quality": "60",
"overwriteprotocol": "https",
"maintenance": false,
"logfile": "\/media\/myCloudDrive\/ncdata\/nextcloud.log",
"mail_sendmailmode": "smtp",
"mail_smtpauth": 1,
"mail_smtphost": "***REMOVED SENSITIVE VALUE***",
"mail_smtpport": "465",
"mail_smtpsecure": "ssl",
"mail_smtpname": "***REMOVED SENSITIVE VALUE***",
"mail_smtppassword": "***REMOVED SENSITIVE VALUE***"
}
}
```
</details>
<details>
<summary>HTTPd logs</summary>
```
[Sat Mar 06 00:00:07.522157 2021] [ssl:warn] [pid 892:tid 3069522448] AH01909: localhost:4443:0 server certificate does NOT include an ID which matches the server name
[Sat Mar 06 00:00:07.522541 2021] [ssl:error] [pid 892:tid 3069522448] AH02217: ssl_stapling_init_cert: can't retrieve issuer certificate! [subject: CN=archlinux / issuer: CN=archlinux / serial: 303A38E45B64A6AAD3A8E4CD74CB7461409A01EA / notbefore: Sep 5 16:15:31 2020 GMT / notafter: Sep 3 16:15:31 2030 GMT]
[Sat Mar 06 00:00:07.522570 2021] [ssl:error] [pid 892:tid 3069522448] AH02604: Unable to configure certificate localhost:4443:0 for stapling
[Sat Mar 06 00:00:07.522587 2021] [ssl:warn] [pid 892:tid 3069522448] AH01916: Init: (localhost:443) You configured HTTP(80) on the standard HTTPS(443) port!
[Sat Mar 06 00:00:07.523780 2021] [mpm_event:notice] [pid 892:tid 3069522448] AH00489: Apache/2.4.38 (Raspbian) OpenSSL/1.1.1d configured -- resuming normal operations
[Sat Mar 06 00:00:07.523810 2021] [core:notice] [pid 892:tid 3069522448] AH00094: Command line: '/usr/sbin/apache2'
[Sat Mar 06 16:45:46.336794 2021] [mpm_event:notice] [pid 892:tid 3069522448] AH00491: caught SIGTERM, shutting down
```
</details>
<details>