Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
windows-vm
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pem
windows-vm
Commits
fda18175
Commit
fda18175
authored
Mar 21, 2025
by
César Galvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: updated docs and deleted useless code
parent
1b0e6825
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
README.md
README.md
+2
-7
Vagrantfile
Vagrantfile
+0
-5
No files found.
README.md
View file @
fda18175
...
...
@@ -60,17 +60,12 @@ Then, restart the `squid` service. Now, you can add the proxy url in your host!
##### Add proxy in host
> **NOTE:** You can get the Windows IP address executing the `ifconfig` command in the virtual machine.
```
sh
# Add parameters
(change the proxy address first)
PROXY_ADDRESS
=
192.168.56.10
# Add parameters
PROXY_ADDRESS
=
windows-vpn
PROXY_PORT
=
3128
# Test the proxy
curl
-x
http://
$PROXY_ADDRESS
:
$PROXY_PORT
-I
http://www.google.com
# Enable proxy in terminal
export
http_proxy
=
"http://
$PROXY_ADDRESS
:
$PROXY_PORT
"
export
https_proxy
=
"http://
$PROXY_ADDRESS
:
$PROXY_PORT
"
```
## Useful commands
...
...
Vagrantfile
View file @
fda18175
...
...
@@ -36,11 +36,6 @@ Vagrant.configure("2") do |config|
config
.
vm
.
provision
"shell"
,
path:
"src/scripts/ChocolateyInstall.ps1"
## Install Chocolatey packages
config
.
vm
.
provision
"shell"
,
path:
"src/scripts/ChocolateyInstallPackages.ps1"
## Print the current IP address
config
.
vm
.
provision
"shell"
,
inline:
<<-
SHELL
Write-Output "=== Virtual machine network settings ==="
ipconfig
SHELL
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment