self-hosting Questions

1

I can't figure out how to setup Gitlab Pages on my self-hosted Gitlab instance without wildcard domains. For example, I have 1 server with 3 public IP addresses and domain names: 10.8.0.10 (git.ex...

8

Solved

I have a simple .net core web api with one action: [Route("[action]")] public class APIController : Controller { // GET api/values [HttpGet] public string Ping() { return DateTime.Now.ToStrin...
Favorable asked 27/9, 2016 at 18:52

3

When Teamcity runs an integration test that starts a self-hosted webapplication, the test fails with the error: System.MissingMemberException: The server factory could not be located for the given...
Boehmer asked 5/5, 2015 at 10:33

7

I would like to make my WordPress blog installed on Localhost to push into GitHub and run that on GitHub as a static page. Can I do it, and if yes please give me a detailed answer with the steps an...
Marcellamarcelle asked 2/10, 2015 at 7:33

2

is there any way to delete every urlacl reservation of a specific port. I mean something like this is possible (customer constelation): netsh http add urlacl url=http://localhost:55521/ user="eve...
Announcer asked 27/11, 2018 at 14:14

1

Solved

So i've been making and using my Discord bot (written in javascript) for about 5 months, ive learnt quite a bit and it works nicely. Only thing is, i dont understand how it actually works in terms ...
Elainaelaine asked 15/6, 2021 at 16:48

2

Solved

https://v3.vuejs.org/guide/installation.html#download-and-self-host https://v3.vuejs.org/guide/installation.html#from-cdn-or-without-a-bundler how do I import vue without CDN? so what I care about ...
Aili asked 25/5, 2021 at 10:4

2

Solved

In my web-application I have action with long-running task and I want to call this task in background. So, according to documentation .NET Core 3.1 Queued background tasks I use such code for this:...
Harbour asked 9/4, 2021 at 19:11

2

Solved

I created one solution with two projects: one is a class library with a Self Host Web API (created with the help of http://www.asp.net/web-api/overview/hosting-aspnet-web-api/self-host-a-web-api), ...
Backbencher asked 10/4, 2013 at 14:33

1

I am trying to investigate the plausibility of moving to dot net core now 3.0 has been released. One of our key components allows our (private) nugets to create their own WebAPI, providing events a...
Jasen asked 24/9, 2019 at 20:27

2

We are using a self hosted WebApi and we are required to remove the server header (Server: Microsoft-HTTPAPI/2.0) of the responses sent. Since it is self hosted, a HttpModule is not an option. Imp...
Tonnie asked 30/6, 2014 at 10:48

0

I have difficulties with running dotnetcore application as a service under Ubuntu 18.04.3 LTS. The application works OK on Windows, and most of the times on Ubuntu too. But several hosts on Ubuntu ...
Henrietta asked 24/4, 2020 at 16:9

1

Solved

I've already answered my own question and may later update this question to reflect on my starting point/the steps I took to get to my solution, but figured I would ask a question that I started wi...
Fullrigged asked 14/3, 2019 at 10:14

2

I'd like to set up a private version of hub.docker.com that would let me create a webhook pushed by my private gitlab instance. In other words - when I push to Gitlab, this Docker registry would ch...

1

Solved

In .Net Core you can self host a web server using WebHost. There is a method called CreateDefaultBuilder(), to which the Microsoft documentation states the following: CreateDefaultBuilder performs...
Threap asked 25/8, 2018 at 21:23

5

Solved

I've set up a web site using an Owin self hosted console app. I'm serving static files with no problem, the 'root' of the static part of the site works properly, and the web API routes work fine al...
Veritable asked 25/8, 2014 at 2:20

2

Solved

I have a windows service (running as LocalSystem) that is self-hosting an OWIN service (SignalR) and needs to be accessed over SSL. I can set up the SSL binding on my local development machine just...
Rosauraroscius asked 24/10, 2014 at 18:48

1

With SslStream and socket, I've developed a https web server from scratch. I can apply a certificate to the stream from C# code and deal with the requests. However, I didn't figure out how to do t...
Whether asked 19/11, 2015 at 7:36

2

Solved

I'm trying to run a Web API application as a Windows Service using OWIN. However, I get the following message, when trying to start the service: The [ServiceName] service on Local Computer start...
Valaree asked 15/2, 2015 at 14:48

2

I'm trying to self-host a simple WebAPI: public class AccountViewApplication { protected IDisposable WebApplication; public void Start() { WebApplication = WebApp.Start<WebPipeline>("htt...
Obovate asked 16/10, 2014 at 13:52

4

I have created my first self-hosted WCF service. I hosted it in a C# console app but it throws an error: System.ServiceModel.AddressAccessDeniedException: HTTP could not register URL http: 8080...
Metaphysics asked 27/3, 2014 at 11:38

2

Solved

I have a SignalR app. hosted in a Windows service (used OWIN & Katana as self hosting) and it's listening on mydomain.com:8080 On the same server, I also have an MVC application which is basic...
Uranyl asked 29/4, 2014 at 23:28

5

Solved

I'm trying to get the user-agent in a web api self host and I'm either doing it wrong, or the web api itself is altering the user agent string. I've tried using several methods to the get the stri...
Floristic asked 9/3, 2013 at 9:43

3

Solved

Very new to the Self Host WebApi, but I am very impressed with its ease of use and extendability. At least through this tutorial. Everything I've done so far works on my development machine whether...
Kokaras asked 31/5, 2013 at 23:29

1

Solved

I have a self-hosted Owin WebAPI. I want to protect a few routes with authentication. The majority of the routes should be accessible anonymously. I have succesfully implemented Windows-Auth, but n...
Simonasimonds asked 25/7, 2017 at 9:42

© 2022 - 2024 — McMap. All rights reserved.