Skip to content

Commit

Permalink
port 80 -> 800
Browse files Browse the repository at this point in the history
  • Loading branch information
source-Alexander-Rudenko committed Dec 15, 2024
1 parent 718261a commit 5eee46d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY . .
RUN npm run build

# Открываем порт 80
EXPOSE 80
EXPOSE 800

# Команда для запуска приложения
CMD ["npm", "start"]
2 changes: 1 addition & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const path = require('path');
const cors = require('cors');

const app = express();
const PORT = 80;
const PORT = 800;

app.use(express.static(path.resolve(__dirname, '..', 'public')));
app.use(express.static(path.resolve(__dirname, '..', 'node_modules')));
Expand Down

0 comments on commit 5eee46d

Please sign in to comment.