forked from sillsdev/web-languageforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
565 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,57 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome against localhost", | ||
"url": "https://languageforge.local", | ||
"webRoot": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "attach", | ||
"name": "Attach to Chrome", | ||
"port": 9222, | ||
"webRoot": "${workspaceRoot}" | ||
} | ||
] | ||
"version": "0.2.0", | ||
"compounds": [ | ||
{ | ||
"name": "Full App", | ||
"configurations": [".NET Core", "XDebug", "Launch Chrome"] | ||
} | ||
], | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "dotnet", | ||
"program": "${workspaceRoot}/src/netcore-api/SIL.XForge.WebApi.Server/bin/Debug/netcoreapp2.0/SIL.XForge.WebApi.Server.dll", | ||
"args": [], | ||
"cwd": "${workspaceRoot}/src/netcore-api/SIL.XForge.WebApi.Server/", | ||
"stopAtEntry": false, | ||
"console": "integratedTerminal", | ||
"env": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
} | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome", | ||
"url": "https://languageforge.local", | ||
"webRoot": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "attach", | ||
"name": "Attach to Chrome", | ||
"port": 9222, | ||
"webRoot": "${workspaceRoot}" | ||
}, | ||
{ | ||
"name": "XDebug", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9000, | ||
"windows":{ | ||
"localSourceRoot": "${workspaceRoot}", | ||
"serverSourceRoot": "${env:WSL_XFORGE_PATH}" | ||
} | ||
}, | ||
{ | ||
"name": "PHP script", | ||
"type": "php", | ||
"request": "launch", | ||
"program": "${file}", | ||
"cwd": "${fileDirname}", | ||
"port": 9000 | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,9 @@ apache_vhosts: | |
- has_ssl: false | ||
port: 80 | ||
server_alias: [] | ||
proxy: '/machine/ "unix:///tmp/machine-web-api.sock|http://127.0.0.1/" timeout=21600' | ||
proxy: | ||
- '/api2/ http://localhost:5000/ timeout=21600' | ||
- '/machine/ http://localhost:5001/ timeout=21600' | ||
- server_name: languageforge.org | ||
server_admin: [email protected] | ||
server_file_name: languageforge_org | ||
|
@@ -70,7 +72,9 @@ apache_vhosts: | |
port: 80 | ||
server_alias: | ||
- languageforge.local | ||
proxy: '/machine/ "unix:///tmp/machine-web-api.sock|http://127.0.0.1/" timeout=21600' | ||
proxy: | ||
- '/api2/ http://localhost:5000/ timeout=21600' | ||
- '/machine/ http://localhost:5001/ timeout=21600' | ||
- server_name: scriptureforge.org | ||
server_admin: [email protected] | ||
server_file_name: scriptureforge_org | ||
|
@@ -84,9 +88,13 @@ apache_vhosts: | |
port: 80 | ||
server_alias: | ||
- scriptureforge.local | ||
proxy: '/machine/ "unix:///tmp/machine-web-api.sock|http://127.0.0.1/" timeout=21600' | ||
proxy: | ||
- '/api2/ http://localhost:5000/ timeout=21600' | ||
- '/machine/ http://localhost:5001/ timeout=21600' | ||
- has_ssl: true | ||
port: 443 | ||
certificate_file: "scriptureforge.pem" | ||
key_file: "scriptureforge.key" | ||
proxy: '/machine/ "unix:///tmp/machine-web-api.sock|http://127.0.0.1/" timeout=21600' | ||
proxy: | ||
- '/api2/ http://localhost:5000/ timeout=21600' | ||
- '/machine/ http://localhost:5001/ timeout=21600' |
Oops, something went wrong.