I'm trying to install on Ubuntu 22.04. Everything goes fine until I get to the Nginx configuration.
I'm doing it like this:
bash
sudo nano /etc/nginx/sites-available/l2server
Then:
bash
sudo ln -s /etc/nginx/sites-available/l2server /etc/nginx/sites-enabled/
I don't have a domain name yet, so I'm using my IP address: 194.87.118.218
In my Nginx config I have:
nginx
server_name 194.87.118.218;
root /var/www/l2jmobius-acm/public;
Then in the configuration file /var/www/l2jmobius-acm/.env:
env
#Url settings
APP_NAME='L2jMobius CT0'
APP_SCHEME='http'
APP_DOMAIN='194.87.118.218'
APP_CDN="${APP_DOMAIN}/assets"
DEMO_MODE=false
But it's not working for me. The site is still unavailable.

