user root;
#user
nobody;
worker_processes
1;
#error_log
logs/error.log;
#error_log
logs/error.log
notice;
#error_log
logs/error.log
info;
#pid
logs/nginx.pid;
events {
worker_connections
1024;
}
http {
include
mime.types;
default_type
application/octet-stream;
#log_format
main
'$remote_addr - $remote_user [$time_local] "$request" '
#
'$status $body_bytes_sent "$http_referer" '
#
'"$http_user_agent" "$http_x_forwarded_for"';
#access_log
logs/access.log
main;
sendfile
on;
#tcp_nopush
on;
#keepalive_timeout
0;
keepalive_timeout
65;
#gzip
on;
server {
listen 80;
server_name law.loadpeople.com;
rewrite ^(.*)$ https://$host$1 permanent;
location / {
root
html;
index
index.html index.htm;
}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
#
listen
8000;
#
listen
somename:8080;
#
server_name
somename
alias
another.alias;
#
location / {
#
root
html;
#
index
index.html index.htm;
#
}
#}
# HTTPS server
#
server {
listen 443;
server_name law.loadpeople.com;
ssl on;
root html;
index index.html index.htm;
ssl_certificate
cert/214897222470878.pem;
ssl_certificate_key
cert/214897222470878.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
client_max_body_size 100M;
location / {
proxy_pass http://127.0.0.1:8082;
root html;
index index.html index.htm;
}
location /files/ {
root
/home/law/upload/;
autoindex on;
}
location /admin {
alias
/home/law/.jenkins/workspace/law/admin/dist;
try_files $uri $uri/ /index.html last;
index
index.html;
add_header Access-Control-Allow-Origin *;
}
location /api/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Nginx-Proxy true;
proxy_set_header Connection "";
proxy_pass https://law.loadpeople.com/;
}
error_page
405 =200 @405;
location @405
{
root
/opt/htdocs;
}
}
}