Added first demo
This commit is contained in:
parent
5ced01aed7
commit
41013d4c9d
5 changed files with 399 additions and 0 deletions
17
nginx.conf
Normal file
17
nginx.conf
Normal file
|
@ -0,0 +1,17 @@
|
|||
server {
|
||||
listen 443 ssl;
|
||||
server_name 100.104.190.55;
|
||||
server_name 192.168.123.233;
|
||||
|
||||
ssl_certificate /etc/nginx/ssl/nginx.crt;
|
||||
ssl_certificate_key /etc/nginx/ssl/nginx.key;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
add_header 'Cross-Origin-Embedder-Policy' 'require-corp';
|
||||
add_header 'Cross-Origin-Opener-Policy' 'same-origin';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue