Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최시원
/
Singer-Composer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Mukho
2021-11-23 20:23:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
27cc662bafe815c13fd04aac709fd929018c9a20
27cc662b
1 parent
58643f96
Fix port error
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
app.js
readme.md
app.js
View file @
27cc662
...
...
@@ -123,6 +123,6 @@ io.sockets.on('connection', function(socket) {
})
// 서버 가동(IPv4 형식으로 express 설정)
server
.
listen
(
PORT
,
'
127.0.0.1
'
,
function
(){
server
.
listen
(
PORT
,
'
0.0.0.0
'
,
function
(){
console
.
log
(
logString
+
"서버가 시작되었습니다.(Port: "
+
PORT
+
")"
);
});
\ No newline at end of file
...
...
readme.md
View file @
27cc662
...
...
@@ -60,7 +60,7 @@ create table board(
>UPDATE board SET idx = @COUNT:=@COUNT+1;
---
### 최종 수정: 2021-11-23
02:49
<br>
### 최종 수정: 2021-11-23
20:23
<br>
### 수정 내용:
0.
채팅기능에 버그가 있는 것 같음-피드백 바람(undefined님이 나가셨습니다. -> 콘솔에 계속 출력됨)
1.
로그에 IP 추가
...
...
Please
register
or
login
to post a comment