diff --git a/SodaLive/Sources/App/ObjectBoxService.swift b/SodaLive/Sources/App/ObjectBoxService.swift
index e0ca84f..3643f8f 100644
--- a/SodaLive/Sources/App/ObjectBoxService.swift
+++ b/SodaLive/Sources/App/ObjectBoxService.swift
@@ -13,7 +13,7 @@ class ObjectBoxService {
     let playbackTrackingBox: Box<PlaybackTracking>
     
     init() {
-        let databaseName = "yozmlive"
+        let databaseName = "sodalive"
         let appSupport = try! FileManager.default.url(for: .applicationSupportDirectory,
                                                       in: .userDomainMask,
                                                       appropriateFor: nil,
diff --git a/SodaLive/Sources/App/SodaLiveApp.swift b/SodaLive/Sources/App/SodaLiveApp.swift
index 2ec257f..f278616 100644
--- a/SodaLive/Sources/App/SodaLiveApp.swift
+++ b/SodaLive/Sources/App/SodaLiveApp.swift
@@ -58,7 +58,7 @@ struct SodaLiveApp: App {
                 .onOpenURL { url in
                     DEBUG_LOG("I have received a URL through a custom scheme! \(url.absoluteString)")
                     if let scheme = url.scheme {
-                        if scheme == "kr.co.vividnext.yozm" {
+                        if scheme == "kr.co.vividnext.sodalive" {
                             if let dynamicLink = DynamicLinks.dynamicLinks().dynamicLink(fromCustomSchemeURL: url) {
                                 self.handleIncomingDynamicLink(dynamicLink)
                             } else {
diff --git a/SodaLive/Sources/Content/Main/ContentMainNewContentView.swift b/SodaLive/Sources/Content/Main/ContentMainNewContentView.swift
index 263bbf3..6d5bd29 100644
--- a/SodaLive/Sources/Content/Main/ContentMainNewContentView.swift
+++ b/SodaLive/Sources/Content/Main/ContentMainNewContentView.swift
@@ -42,11 +42,11 @@ struct ContentMainNewContentView_Previews: PreviewProvider {
             items: [
                 GetAudioContentMainItem(
                     contentId: 1,
-                    coverImageUrl: "https://test-cf.yozm.day/audio_content_cover/31/31-cover-e78575f9-7624-471c-8102-1289a5748aae-5983-1684487894269",
+                    coverImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
                     title: "테스트",
                     isAdult: false,
                     creatorId: 7,
-                    creatorProfileImageUrl: "https://test-cf.yozm.day/profile/7f73168e-220f-482f-b97d-baab63b70e04IMG_20220314_220855522.jpg",
+                    creatorProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
                     creatorNickname: "유저1"
                 )
             ],
diff --git a/SodaLive/Sources/Debug/Utils/Constants.swift b/SodaLive/Sources/Debug/Utils/Constants.swift
index c4f5ca3..d2b3d9d 100644
--- a/SodaLive/Sources/Debug/Utils/Constants.swift
+++ b/SodaLive/Sources/Debug/Utils/Constants.swift
@@ -8,7 +8,7 @@
 import Foundation
 
 let BASE_URL = "https://test-api.sodalive.net"
-let APPLY_YOZM_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
+let APPLY_SODALIVE_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
 
 let AGORA_APP_ID = "b96574e191a9430fa54c605528aa3ef7"
 let AGORA_APP_CERTIFICATE = "ae18ade3afcf4086bd4397726eb0654c"
diff --git a/SodaLive/Sources/Extensions/DateExtension.swift b/SodaLive/Sources/Extensions/DateExtension.swift
index d983c3a..daa26c0 100644
--- a/SodaLive/Sources/Extensions/DateExtension.swift
+++ b/SodaLive/Sources/Extensions/DateExtension.swift
@@ -1,6 +1,6 @@
 //
 //  DateExtension.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/05/27.
 //
diff --git a/SodaLive/Sources/Extensions/IntExtension.swift b/SodaLive/Sources/Extensions/IntExtension.swift
index 310a247..cdf30f5 100644
--- a/SodaLive/Sources/Extensions/IntExtension.swift
+++ b/SodaLive/Sources/Extensions/IntExtension.swift
@@ -1,6 +1,6 @@
 //
 //  IntExtension.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/06/21.
 //
diff --git a/SodaLive/Sources/Extensions/StringExtension.swift b/SodaLive/Sources/Extensions/StringExtension.swift
index d49fda3..fe2ac94 100644
--- a/SodaLive/Sources/Extensions/StringExtension.swift
+++ b/SodaLive/Sources/Extensions/StringExtension.swift
@@ -1,6 +1,6 @@
 //
 //  StringExtension.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/06/03.
 //
diff --git a/SodaLive/Sources/Extensions/UserDefaultsExtension.swift b/SodaLive/Sources/Extensions/UserDefaultsExtension.swift
index a51a09d..b8b6add 100644
--- a/SodaLive/Sources/Extensions/UserDefaultsExtension.swift
+++ b/SodaLive/Sources/Extensions/UserDefaultsExtension.swift
@@ -1,6 +1,6 @@
 //
 //  UserDefaultsExtension.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/05/20.
 //
diff --git a/SodaLive/Sources/Extensions/ViewExtension.swift b/SodaLive/Sources/Extensions/ViewExtension.swift
index df65c57..187d708 100644
--- a/SodaLive/Sources/Extensions/ViewExtension.swift
+++ b/SodaLive/Sources/Extensions/ViewExtension.swift
@@ -1,6 +1,6 @@
 //
 //  ViewExtension.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/05/19.
 //
diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift
index 3ac01fc..cf10c74 100644
--- a/SodaLive/Sources/Live/LiveView.swift
+++ b/SodaLive/Sources/Live/LiveView.swift
@@ -31,7 +31,7 @@ struct LiveView: View {
                                     .padding(.top, 13.3)
                             }
                             
-                            if let url = URL(string: "https://blog.naver.com/yozmlive"),
+                            if let url = URL(string: "https://blog.naver.com/sodalive_official"),
                                UIApplication.shared.canOpenURL(url) {
                                 Image("img_how_to_use")
                                     .resizable()
diff --git a/SodaLive/Sources/Message/Text/TextMessageItemView.swift b/SodaLive/Sources/Message/Text/TextMessageItemView.swift
index dac46ee..1b085aa 100644
--- a/SodaLive/Sources/Message/Text/TextMessageItemView.swift
+++ b/SodaLive/Sources/Message/Text/TextMessageItemView.swift
@@ -54,9 +54,9 @@ struct TextMessageItemView_Previews: PreviewProvider {
                 messageId: 18,
                 senderId: 19,
                 senderNickname: "user8",
-                senderProfileImageUrl: "https://test-cf.yozm.day/profile/default_profile.png",
+                senderProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
                 recipientNickname: "uset7",
-                recipientProfileImageUrl: "https://test-cf.yozm.day/profile/default_profile.png",
+                recipientProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
                 textMessage: "ㅅㅅㅅㅅㅅㅅㅅㅅ러러러라라가가각개가사러",
                 date: "2022-05-23 16:15:22",
                 isKept: false
diff --git a/SodaLive/Sources/Utils/Constants.swift b/SodaLive/Sources/Utils/Constants.swift
index 857ff86..7f8949c 100644
--- a/SodaLive/Sources/Utils/Constants.swift
+++ b/SodaLive/Sources/Utils/Constants.swift
@@ -8,7 +8,7 @@
 import Foundation
 
 let BASE_URL = "https://api.sodalive.net"
-let APPLY_YOZM_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
+let APPLY_SODALIVE_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
 
 let AGORA_APP_ID = "e34e40046e9847baba3adfe2b8ffb4f6"
 let AGORA_APP_CERTIFICATE = "15cadeea4ba94ff7b091c9a10f4bf4a6"
diff --git a/SodaLive/Sources/Utils/Log.swift b/SodaLive/Sources/Utils/Log.swift
index b2e8011..564467d 100644
--- a/SodaLive/Sources/Utils/Log.swift
+++ b/SodaLive/Sources/Utils/Log.swift
@@ -1,6 +1,6 @@
 //
 //  Log.swift
-//  yozm
+//  SodaLive
 //
 //  Created by klaus on 2022/05/20.
 //