14 lines
454 B
Plaintext
14 lines
454 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name hr.libraryofcode.org;
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:5487;
|
|
}
|
|
}
|
|
sudo apt install php7.5-common php7.5-mbstring php7.5-xmlrpc php7.5-soap php7.5-gd php7.5-xml php7.5-intl php7.5-mysql php7.5-cli php7.5-mcrypt php7.5-ldap php7.5-zip php7.5-curl
|