add hr site
parent
663e8a2db6
commit
5b548eec04
|
@ -0,0 +1,24 @@
|
|||
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;
|
||||
|
||||
root /var/www/orangehrm/symfony/web;
|
||||
index index.php index.html index.htm;
|
||||
|
||||
access_log /var/log/nginx/hr_access.log;
|
||||
error_log /var/log/nginx/hr_error.log;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$uri&$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
include fastcgi_params;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue