Deploy
Deploy AWS EC2, Azure and Google Cloud
🚧 Comming Soon :)
Nginx
Install Nginx on your instance.
sudo apt install nginx
Configure Nginx.
cd /etc/nginx/sites-available
sudo nano deepnlpf_api
server {
listen 80;
server_name http://192.168.1.5/; # your server.
location / {
proxy_pass http://127.0.0.1:5000; # your proxy.
}
}
sudo service nginx restart
Execute DeepNLPF API
deepnlpf --api start