Very great 😉
Setup OGProxy for use in NodeBB
-
But I wonder how to keep it without it coming into conflict with OGProxy, especially for the internal links to the site which do not have an iframe
-
@DownPW just needs carefully crafted CSS.
-
@DownPW said in Setup OGProxy for use in NodeBB:
especially for the internal links to the site which do not have an iframe
it works ??!!!
Internal links are also in an Iframe.
Very strange,I thought that was not the intended operation. -
@DownPW it wasn’t to start with, but I changed my mind 🤭
-
@DownPW can you pm me a link to an internal URL ? Something I’d like to check.
-
So I no longer need my effect code if all the URL links, even internal ones, are in an Iframe so managed by OGProxy
You could have told me before I racked my brains little trickster ha haBut I thought it would cause perf issues so I guess you found a workaround for that
@phenomlab said in Setup OGProxy for use in NodeBB:
@DownPW can you pm me a link to an internal URL ? Something I’d like to check.
On my Domain ?
-
@DownPW sorry. Yes, I did find a workaround.
Yes, your Dev instance please.
-
Hi, I’ve followed all steps but unfortunately don’t get it to work. Here’s the console output:
OGProxy: Domains containing (or starting with) http://xx.xxx.xxx.xxx are in the ignore list and will not be parsed. OGProxy: Paths containing /post are in the ignore list and will not be parsed. OGProxy: Parsing DOM for any URLs that should be converted to previews.
-
@dave1904 is the server running ?
-
@phenomlab Yes
● ogproxy.service - OGProxy Server Loaded: loaded (/etc/systemd/system/ogproxy.service; enabled; vendor preset: enabled) Active: active (running) since Tue 2023-06-13 21:32:17 UTC; 34min ago Main PID: 948850 (node) Tasks: 7 (limit: 1131) Memory: 16.0M CGroup: /system.slice/ogproxy.service └─948850 /usr/bin/node /home/ogproxy/ogproxy/server.js
-
@dave1904 can you provide your
nginx
config? -
@phenomlab I have send you a pm
-
@dave1904 thanks. Any errors in the console?
-
This post is deleted!
-
@phenomlab Yes:
OPTIONS https://media.werkself-forum.de/ogproxy?url=https://www1.wdr.de/sport/fussball/erste-bundesliga/bundesliga-teamcheck-winter-bayer-leverkusen-100.html CORS Missing Allow Origin
It seems to me that I missed something in the nginx configuration.
-
@dave1904 not the
nginx
configuration, but inserver.js
under this specific sectionapp.use(cors({ origin: 'FULL_FQDN_OF_YOUR_ORIGIN_HERE' }));
-
@DownPW @dave1904 can you please replace your function code (found in
function.js
and used in the custom JS part of NodeBB) to use the below - please also remember to replace yourproxy
andapiKey
valueshttps://github.com/phenomlab/ogproxy/blob/main/function.js
I have found a couple of bugs this morning and fixed them. The original post has also been updated.
Thanks
-
I’ve added a new hover effect that will enlarge the image by
1.5
when activated. If you’d like this feature, you’ll need to pull the latestfunction.js
code and use this to replace the existing in your custom JS console.You will also need this additional CSS
.card-image-container { max-width: 100%; max-height: 250px; overflow: hidden; border-top-left-radius: 0.375rem !important; border-top-right-radius: 0.375rem !important; } #card-image { -webkit-transition: all 0.8s ease; -moz-transition: all 0.8s ease; transition: all 0.8s ease; } #card-image:hover { transform: scale(1.1); }
If you’d rather not have this feature, just remove the CSS block above.
-
Another update - code has been amended in GIT to fix the
previewLinks()
function crashing in chat -
Can you give procedure to update?