Install problem #481
Replies: 5 comments 2 replies
|
Seems to be this problem: |
|
I have repeated the exercise of installing using the dev and production instructions on a VM with a GUI so I can try opening 0,0.0.0:8080 without the complication of a reverse proxy. Still doesn't work either with the docker container or by the latest docker. Has anyone but devs actually got an instance of this running? |
|
There are a couple instances that serve photon as default. Here's a known working configuration, with some irrelevant stuff removed:
services:
photon_ui:
container_name: photon
image: "ghcr.io/xyphyn/photon:latest"
ports:
- 127.0.0.1:3000:3000
env_file: photon_ui.env
restart: always
Edit: try |
Wait, did I understand correctly that you put your photon subdomain here? It's supposed to be the lemmy server photon connects to. |
|
Thanks for the help. I now have my site fixed. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I followed these instructions:
"Self-hosting
Put Photon on your own domain for easier onboarding.
Running from image
Use the env var PUBLIC_INSTANCE_URL to set the default instance URL.
docker run -p 8080:3000 -e PUBLIC_INSTANCE_URL=example.com ghcr.io/xyphyn/photon:latest
"
On Ubuntu 22.04.5 LTS
I changed PUBLIC_INSTANCE_URL to point to a a reachable subdomain
I setup my reverse proxy (NGINX) to point to lemmyip:8080
I can open the homepage on my instance but get:
"500
TypeError: NetworkError when attempting to fetch resource."
What have I done wrong?
All reactions