Skip to content

Commit aea88e5

Browse files
committed
Merge branch 'change-default-private-network'
2 parents 83ee8eb + 8163c97 commit aea88e5

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.1.1] - 2022-01-03
10+
11+
### Changed
12+
13+
* Change default private network.
14+
915
### Added
1016

1117
* Enable to start service via.

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class MtDevCommand < Vagrant.plugin(2, :command)
4242
status = env[:ssh_run_exit_status] || 0
4343

4444
if status != 0
45-
puts <<MSG
45+
puts <<~MSG
4646
Please execute this command first for copy your private key for github.
4747
4848
$ vagrant mt-dev copy-ssh-key ~/.ssh/id_rsa
@@ -51,7 +51,7 @@ $ vagrant mt-dev copy-ssh-key ~/.ssh/id_rsa
5151
5252
See also:
5353
https://github.com/movabletype/mt-dev/wiki/Troubleshooting
54-
MSG
54+
MSG
5555
return 1
5656
end
5757
end
@@ -136,7 +136,7 @@ class MtDev < Vagrant.plugin("2")
136136
end
137137
end
138138

139-
vm_private_network_ip = ENV["VM_PRIVATE_NETWORK_IP"] || "192.168.7.25"
139+
vm_private_network_ip = ENV["VM_PRIVATE_NETWORK_IP"] || "192.168.58.25"
140140

141141
Vagrant.configure("2") do |config|
142142
config.vm.box = "bento/ubuntu-20.04"

mt-config.cgi-original

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
################################################################
1313

1414
# The CGIPath is the URL to your Movable Type directory
15-
CGIPath http://192.168.7.25/cgi-bin/mt/
15+
CGIPath http://192.168.58.25/cgi-bin/mt/
1616

1717
# The StaticWebPath is the URL to your mt-static directory
1818
# Note: Check the installation documentation to find out
1919
# whether this is required for your environment. If it is not,
2020
# simply remove it or comment out the line by prepending a "#".
21-
StaticWebPath http://192.168.7.25/mt-static
21+
StaticWebPath http://192.168.58.25/mt-static
2222

2323
#================ DATABASE SETTINGS ==================
2424
# CHANGE setting below that refer to databases

0 commit comments

Comments
 (0)