Hello world!


Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

server {
    listen 443 ssl;
    server_name your_domain.com;

    ssl_certificate /etc/ssl/certs/your_domain.com.crt;
    ssl_certificate_key /etc/ssl/private/your_domain.com.key;

    location / {
        proxy_pass http://localhost:80;
    }
}