Skip to content

Commit

Permalink
Fix creating docker container app
Browse files Browse the repository at this point in the history
- Add variable configuration to prod env
- Fixed spelling
- Added redirect to https in nginx properties
  • Loading branch information
plbarsu committed Sep 24, 2023
1 parent afebce0 commit 555016c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nginx-custom.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
server {
listen 80 default_server;
server_name _;
return 301 https://$server_name$request_uri;
}

server {
listen 443 ssl;
ssl_certificate /etc/nginx/certs/server.crt;
Expand Down

0 comments on commit 555016c

Please sign in to comment.