nginx conf changes

merge-requests/2/head
Matthew 2022-09-01 14:07:12 -04:00
parent d979fd2f59
commit e2d193f1e1
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 31 additions and 3 deletions

View File

@ -42,3 +42,31 @@ proxy_redirect http://localhost:6969 https://hrm.libraryofcode.org;
# include fastcgi_params;
#}
}
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;
client_max_body_size 100M;
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$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}

View File

@ -36,7 +36,7 @@ http {
# SSL Settings
##
ssl_protocols TLSv1.2;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_stapling on;
#ssl_stapling_verify on;
@ -77,7 +77,7 @@ http {
# Passenger shit
##
passenger_max_pool_size 18;
#passenger_max_pool_size 18;
##
# Virtual Host Configs