Initial commit
This commit is contained in:
parent
cb24cc9b9b
commit
2500470a1a
32 changed files with 2660 additions and 0 deletions
33
timesheet.lhprojects.net.conf
Normal file
33
timesheet.lhprojects.net.conf
Normal file
|
@ -0,0 +1,33 @@
|
|||
#### Description
|
||||
## Type: HTTP
|
||||
## VHost: timesheet.lhprojects.net
|
||||
## Time Keeping Website
|
||||
server {
|
||||
listen 194.242.3.57:80;
|
||||
server_name timesheet.lhprojects.net;
|
||||
root ;
|
||||
|
||||
location /.well-known {
|
||||
autoindex on;
|
||||
}
|
||||
|
||||
location / {
|
||||
return 302 https://timesheet.lhprojects.net$request_uri;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 194.242.3.57:443 http2 ssl;
|
||||
server_name timesheet.lhprojects.net;
|
||||
|
||||
error_log /var/log/nginx/timesheet.lhprojects.net.error.log;
|
||||
access_log /var/log/nginx/timesheet.lhprojects.net.access.log main;
|
||||
|
||||
ssl_certificate ssl/timesheet.lhprojects.net-fullchain.crt;
|
||||
ssl_certificate_key ssl/timesheet.lhprojects.net.key;
|
||||
|
||||
location / {
|
||||
proxy_pass https://10.0.6.25:443;
|
||||
include proxy_params;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue