Hey everyone, Tonight I continue my previous post of the complete setup of xwiki. This post is about how to setup Nginx as a reverse proxy with an SSL certificate. Before moving further we consider that xwiki runs on the server( EC2 server) with a domain name called example.in To create a custom domain name using AWS you can follow this link:- https://aws.amazon.com/getting-started/hands-on/get-a-domain/ By default, Tomcat 9 works on port 8080 , and you can only visit your XWiki site from the same port. If you want to facilitate visitors' access by removing the port number part, you can install Nginx as a reverse proxy between XWiki and visitors. Step 1, Install Nginx using apt: sudo apt install nginx -y Step 2, Setup Nginx as a reverse proxy by modifying its default site configurations: cd /etc/nginx/sites-available sudo mv default default.bak sudo vi default Step 3, Edit the file server { listen 0.0.0.0:80; proxy_request_buffering off;...
Comments
Post a Comment
Please give us your valuable feedback