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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# JS_CSS_PortfolioProject
by adarsha
1 change: 1 addition & 0 deletions ada.tx.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sdsdsda
23 changes: 23 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'
services:
portfolio:
container_name: portfolio_c
image: nginx:stable
volumes:
- ./main:/code
- ./site.conf:/etc/nginx/conf.d/default.conf
ports:
- "2000:90"
network_mode: "ngnx-proxy"
environment:
- VIRTUAL_HOST=localhost

volumes:
main:

networks:
default:
external:
name: ngnx-proxy


File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions site.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
server {
listen 90;
server_name localhost;
root /code;
index index.html index.php index.htm;

}