Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Hubs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ar-noc
Hubs
Commits
058e94e5
Commit
058e94e5
authored
7 years ago
by
Brian Peiris
Browse files
Options
Downloads
Patches
Plain Diff
remove https cert config
parent
d796cf95
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
https.js
+0
-6
0 additions, 6 deletions
https.js
webpack.dev.js
+0
-4
0 additions, 4 deletions
webpack.dev.js
with
0 additions
and
10 deletions
https.js
deleted
100644 → 0
+
0
−
6
View file @
d796cf95
const
fs
=
require
(
"
fs
"
);
module
.
exports
=
{
cert
:
fs
.
readFileSync
(
"
/home/ubuntu/fullchain.pem
"
),
key
:
fs
.
readFileSync
(
"
/home/ubuntu/privkey.pem
"
),
};
This diff is collapsed.
Click to expand it.
webpack.dev.js
+
0
−
4
View file @
058e94e5
...
...
@@ -9,10 +9,6 @@ module.exports = merge(common, {
devServer
:
{
contentBase
:
path
.
resolve
(
__dirname
,
"
public
"
),
disableHostCheck
:
true
,
https
:
{
cert
:
fs
.
readFileSync
(
"
/home/ubuntu/fullchain.pem
"
),
key
:
fs
.
readFileSync
(
"
/home/ubuntu/privkey.pem
"
)
},
before
:
function
(
app
)
{
// networked-aframe makes HEAD requests to the server for time syncing. Respond with an empty body.
app
.
head
(
'
\
*
'
,
function
(
req
,
res
,
next
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment