nginx conf changes
parent
d979fd2f59
commit
e2d193f1e1
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue