configurations/Nginx/Server Blocks/hr.libraryofcode.org.conf

14 lines
454 B
Plaintext
Raw Normal View History

2022-08-30 20:33:38 -04:00
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 / {
2022-08-30 21:04:24 -04:00
proxy_pass http://localhost:5487;
2022-08-30 20:33:38 -04:00
}
}
2022-08-31 02:46:40 -04:00
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