Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/admin/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ http {
server {
listen 3000;

absolute_redirect off;
port_in_redirect off;

# Security headers
add_header X-Frame-Options "DENY" always;
add_header X-Content-Type-Options "nosniff" always;
Expand Down
3 changes: 3 additions & 0 deletions apps/space/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ http {
server {
listen 3000;

absolute_redirect off;
port_in_redirect off;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
Expand Down
3 changes: 3 additions & 0 deletions apps/web/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ http {
server {
listen 3000;

absolute_redirect off;
port_in_redirect off;

# Security headers
add_header X-Frame-Options "DENY" always;
add_header X-Content-Type-Options "nosniff" always;
Expand Down
Loading