B4J Tutorial [ABMaterial] Several ABMaterial servers on one IP - MichalK73 Apr 24, 2023 (19 reactions) page1.mydomain.com:80 {
# Set this path to your site's directory.
# root * /usr/share/caddy
# Enable the static file server.
# file_server
# Another common task is to set up a reverse proxy:
reverse_proxy localhost:8083
# Or serve a PHP site through php-fpm:
# php_ B4J Question [ABMaterial][ABKeystoreSSL]Setup Details [SOLVED] - Erel (first post) Nov 07, 2024 (1 reaction) You have the option to make Apache act as a reverse proxy. This will allow you to use port 80 (externally) and you will not need a ssl certificate as the B4J server will only be accessed internally. B4J Question Re: To work with a Domain name - EnriqueGonzalez (first post) Jun 07, 2021 (1 reaction) No its not needed. B4j holds a server, just change the A record to your server and you will be able to access. If you use port 7777 then access as domain.com:7777 if you dont want write port then use port 80
No, not at all. Reverse proxy is only for hosting more than one app on the same port, it h B4J Question Question about WebApps and Jetty. - hatzisn (first post) Oct 23, 2021 (4 reactions) Also nginx can act as a reverse proxy. I have followed some tutorials on YouTube and I find it quiet ease to use. I use it in Raspberry Pi. Wish Linux tutorial about the port proxy for B4J web-apps - Tecuma (first post) Sep 13, 2022 (1 reaction) As already suggested a reverse proxy suits your needs. There can be some traps using a reverse proxy. Be aware that this is not a "1-click fast setup solution". You should invest some time and try to understand what it is used for and how it works.
There are several solutions possible. A good one i B4J Question Install SSL on a server already running apache (Jetty) - Pendrush (first post) May 07, 2022 (2 reactions) Reverse proxy is always great solution, some on benefits in articles below:
https://traefik.io/blog/improve-application-security-using-a-reverse-proxy/
https://podrezo.medium.com/using-a-reverse-proxy-with-your-web-application-5eec92001193
https://avinetworks.com/glossary/reverse-proxy-server/
I B4J Question WEB APP Sessions with two servers - Erel (first post) Apr 24, 2022 (2 reactions) I think that you will be able to read the cookies. You will definitely be able to do it with a reverse proxy solution.
With that said, a single B4J server can handle many concurrent solution. If you really need to add a load balancer then sticky sessions should be enough to solve the load. B4J Question How to use B4J Jar create a WEB app - hatzisn (first post) Sep 28, 2021 (1 reaction) Maybe he is using TomCat as a reverse proxy to accept requests and divert them to the relevant apps. When I was researching it something that blew my mind (with nginx at least) is that it provides an https access to the outside world but communicates internally with the jServer apps with http. Maybe B4J Question [ Jserver ] Question about SSL/TLS certificates - cklester (first post) Jan 05, 2024 (1 reaction) Right now, on a Windows 10 PC, I run Apache with reverse proxy and keep my SSL certs updated with certbot (which I think uses LetsEncrypt). B4J Question Server & reverse proxy - wl Jun 01, 2021 Hi,
I'm trying to implement a basic reverse proxy in jServer, by implementing a (Servlet) handler.
So: client (browser) -> jetty server (A) -> external server (B)
Problem is that I can't seem to get the body of the HTTP request to B and pass it (from A) to the browser using the GetAsynchronously Page: 1 2 3 4 5 6 7 Powered by ColBERT |